mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-03-15 21:44:46 +00:00

* added toolbar to user screen # 56 * added filter for user role in user admin toolbar # 56 * added unit tests for queries # 56
81 lines
3.1 KiB
JSON
81 lines
3.1 KiB
JSON
{
|
|
"name": "keleo/kimai",
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"description": "Kimai Time Tracking reloaded",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"": "src/",
|
|
"KimaiTest\\": "tests/"
|
|
},
|
|
"classmap": [
|
|
"app/AppKernel.php",
|
|
"app/AppCache.php"
|
|
]
|
|
},
|
|
"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-master"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|