* improved dev fixtures with more diversity, more data, better testcases, user avatars #42 * added customer stats to dashboard, fixed column length for 3 widgets #42 * fixed empty alias - display empty message for new user #42 * unified-ui for "new" toolbar icon #42 * use kimai2_ as database prefix #42 * added customer stats to dashboard, fixed column length for 3 widgets #42 * fix long project/customer names in "currently active" navbar flyout" #42 * added services config for dev environment #42 * added command to run unit tests #42 * added command to run integration tests #42 * added command to run code sniffer #42 * added phpcs and phpunit to composer #42 * created tests directory #42 * fixed code sniffer warnings #42 * added function to switch result type from Pagerfanta to QueryBuilder #42 * dramatically reduced database calls by using custom joined query #42 * added command to install kimai dependencies #42 * added dev:reset command #42
88 lines
3.2 KiB
JSON
88 lines
3.2 KiB
JSON
{
|
|
"name": "keleo/kimai",
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"description": "Kimai Time Tracking reloaded",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"": "src/"
|
|
},
|
|
"classmap": [
|
|
"app/AppKernel.php",
|
|
"app/AppCache.php"
|
|
]
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "vcs",
|
|
"url": "https://github.com/kevinpapst/AdminThemeBundle"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0.8",
|
|
"ext-pdo_sqlite": "*",
|
|
"doctrine/doctrine-bundle": "^1.6",
|
|
"doctrine/doctrine-fixtures-bundle": "^2.2",
|
|
"doctrine/orm": "^2.5",
|
|
"erusev/parsedown": "^1.5",
|
|
"ezyang/htmlpurifier": "^4.7",
|
|
"incenteev/composer-parameter-handler": "^2.0",
|
|
"leafo/scssphp": "^0.5",
|
|
"patchwork/jsqueeze": "^2.0",
|
|
"sensio/distribution-bundle": "^5.0",
|
|
"sensio/framework-extra-bundle": "^3.0",
|
|
"symfony/assetic-bundle": "^2.8",
|
|
"symfony/monolog-bundle": "^3.1",
|
|
"symfony/swiftmailer-bundle": "^2.3",
|
|
"symfony/symfony": "~3.4",
|
|
"twig/extensions": "^1.3",
|
|
"white-october/pagerfanta-bundle": "^1.0",
|
|
"beberlei/DoctrineExtensions": "^1.0",
|
|
"symfony/web-server-bundle": "3.4",
|
|
"avanzu/admin-theme-bundle": "dev-feature/2.0",
|
|
"almasaeed2010/adminlte": "~2.3.0"
|
|
},
|
|
"require-dev": {
|
|
"sensio/generator-bundle": "~3.0",
|
|
"symfony/phpunit-bridge": "^3.0",
|
|
"squizlabs/php_codesniffer": "3.*",
|
|
"phpunit/phpunit": "^6"
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
|
|
],
|
|
"post-update-cmd": [
|
|
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
|
|
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
|
|
]
|
|
},
|
|
"config": {
|
|
"bin-dir": "bin"
|
|
},
|
|
"extra": {
|
|
"symfony-app-dir": "app",
|
|
"symfony-bin-dir": "bin",
|
|
"symfony-var-dir": "var",
|
|
"symfony-web-dir": "web",
|
|
"symfony-tests-dir": "tests",
|
|
"symfony-assets-install": "relative",
|
|
"incenteev-parameters": {
|
|
"file": "app/config/parameters.yml",
|
|
"env-map": {
|
|
"database_url": "DATABASE_URL",
|
|
"secret": "SYMFONY_SECRET"
|
|
}
|
|
}
|
|
}
|
|
}
|