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-11-27 20:44:24 +00:00
|
|
|
"php": ">=8.3",
|
2023-01-26 20:18:04 +00:00
|
|
|
"ext-apcu": "*",
|
2023-11-30 20:14:17 +00:00
|
|
|
"php-di/php-di": "^7.0.6",
|
2023-01-25 21:09:06 +00:00
|
|
|
"nikic/fast-route": "^1.3",
|
2023-11-30 20:14:17 +00:00
|
|
|
"symfony/http-foundation": "^7.0"
|
2023-01-25 21:09:06 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2023-11-30 20:14:17 +00:00
|
|
|
"phpstan/phpstan": "^1.10.46",
|
|
|
|
"lubiana/code-quality": "^1.2",
|
|
|
|
"phpstan/extension-installer": "^1.3.1",
|
|
|
|
"phpstan/phpstan-strict-rules": "^1.5.2",
|
2023-09-26 16:06:30 +00:00
|
|
|
"thecodingmachine/phpstan-strict-rules": "^1.0",
|
2023-11-30 20:14:17 +00:00
|
|
|
"pmjones/php-styler": "^0.14.0",
|
|
|
|
"vimeo/psalm": "^5.16"
|
2023-01-25 21:09:06 +00:00
|
|
|
},
|
|
|
|
"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": [
|
2023-10-20 18:03:44 +00:00
|
|
|
"rector process", "php-styler apply" ,"ecs --fix", "ecs --fix"
|
2023-01-25 21:09:06 +00:00
|
|
|
],
|
|
|
|
"rector": "./vendor/bin/rector process"
|
|
|
|
},
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
|
|
|
}
|