attribute-spass/composer.json

59 lines
1.6 KiB
JSON
Raw Normal View History

2023-01-25 21:09:06 +00:00
{
"name": "lubian/attribute-magic",
"autoload": {
"psr-4": {
"Lubian\\AttributeMagic\\": "src/"
},
"files": [
"src/Infrastructure/functions.php"
]
},
"authors": [
{
"name": "lubiana",
"email": "lubiana123@gmail.com"
}
],
"require": {
2023-01-25 21:14:50 +00:00
"php": ">=8.2",
"php-di/php-di": "^7.0.1",
2023-01-25 21:09:06 +00:00
"nikic/fast-route": "^1.3",
2023-01-25 22:06:41 +00:00
"symfony/http-foundation": "^6.2.5",
"vimeo/psalm": "^5.6"
2023-01-25 21:09:06 +00:00
},
"require-dev": {
2023-01-25 21:14:50 +00:00
"phpstan/phpstan": "^1.9.14",
2023-01-25 21:37:17 +00:00
"lubiana/code-quality": "^1.1.5",
2023-01-25 21:09:06 +00:00
"phpstan/extension-installer": "^1.2",
2023-01-25 21:14:50 +00:00
"phpstan/phpstan-strict-rules": "^1.4.5",
2023-01-25 21:09:06 +00:00
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"serve": [
"Composer\\Config::disableProcessTimeout",
"php -S 0.0.0.0:1235 -t public"
],
2023-01-25 22:06:41 +00:00
"check": [
"./vendor/bin/phpstan analyze",
"./vendor/bin/psalm"
],
"baseline": [
"./vendor/bin/phpstan analyze --generate-baseline",
"./vendor/bin/psalm --set-baseline=psalm-baseline.xml"
],
2023-01-25 21:09:06 +00:00
"style": "./vendor/bin/ecs",
"fix": [
"rector process" ,"ecs --fix", "ecs --fix"
],
"rector": "./vendor/bin/rector process"
},
"minimum-stability": "dev",
"prefer-stable": true
}