43 lines
1002 B
JSON
Executable File
43 lines
1002 B
JSON
Executable File
{
|
|
"require": {
|
|
"php": "^8.5",
|
|
"nikic/fast-route": "^1.3",
|
|
"monolog/monolog": "^3",
|
|
"nyholm/psr7": "^1.3.2",
|
|
"nyholm/psr7-server": "^1.0",
|
|
"psr/container": "^2.0",
|
|
"psr/http-server-middleware": "^1.0",
|
|
"relay/relay": "^3.0",
|
|
"ext-pdo": "*",
|
|
"ext-fileinfo": "*",
|
|
"ext-zip": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpstan/phpstan": "^2.1",
|
|
"phpstan/extension-installer": "^1.4",
|
|
"phpunit/phpunit": "^10.5",
|
|
"friendsofphp/php-cs-fixer": "^3.92"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Din9xtrCloud\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/Helpers/helpers.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"analyse": "phpstan analyse src --level=8",
|
|
"analyse-strict": "phpstan analyse src --level=max",
|
|
"coverage": "phpunit --coverage-html coverage",
|
|
"cs-check": "php-cs-fixer fix --dry-run --diff",
|
|
"cs-fix": "php-cs-fixer fix"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"phpstan/extension-installer": true
|
|
}
|
|
}
|
|
}
|