mirror of
https://github.com/Aviortheking/DeltaCMS.git
synced 2025-04-22 19:02:12 +00:00
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "avior/admin-panel",
|
|
"type": "project",
|
|
"license": "MIT License",
|
|
"description": "WIP Project",
|
|
"authors": [
|
|
{
|
|
"name": "Avior",
|
|
"email": "florian.bouillon@delta-wings.net"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"DeltaCMS\\": "src/DeltaCMS",
|
|
"": "src/Modules"
|
|
},
|
|
"exclude-from-classmap": [
|
|
"src/Modules"
|
|
],
|
|
"files": [
|
|
"src/DeltaCMS/Functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests"
|
|
}
|
|
},
|
|
"require": {
|
|
"twig/twig": "^2.7",
|
|
"psr/simple-cache": "^1.0",
|
|
"psr/log": "^1.1",
|
|
"doctrine/orm": "^2.6"
|
|
},
|
|
"require-dev": {
|
|
"squizlabs/php_codesniffer": "^3.4",
|
|
"symfony/var-dumper": "^4.2",
|
|
"phpunit/phpunit": "^8.1",
|
|
"codacy/coverage": "^1.4",
|
|
"phpmd/phpmd": "^2.6",
|
|
"phpstan/phpstan": "^0.11.5"
|
|
},
|
|
"scripts": {
|
|
"phpunit": "phpunit --coverage-text --colors=never",
|
|
"codacy": "codacycoverage clover tmp/code-coverage.xml",
|
|
"phpstan": "phpstan analyse src/DeltaCMS public tests --level=max",
|
|
|
|
"phpcs": "phpcs",
|
|
"phpmd": "vendor/bin/phpmd . text phpmd --exclude vendor/,cache/",
|
|
|
|
"test": "composer run phpunit && composer run phpstan",
|
|
"quality": "composer run phpmd && composer run phpcs",
|
|
"full": "composer run test && composer run quality"
|
|
}
|
|
}
|