24 строки
692 B
JSON
24 строки
692 B
JSON
{
|
|
"require": {
|
|
"php": ">=8.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
|
"cs:fix": "php-cs-fixer fix",
|
|
"psalm": "psalm.phar --no-cache",
|
|
"psalm:update-baseline": "psalm.phar --threads=1 --update-baseline",
|
|
"psalm:update-baseline:force": "psalm.phar --threads=1 --update-baseline --set-baseline=tests/psalm-baseline.xml"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^3",
|
|
"nextcloud/coding-standard": "^1",
|
|
"psalm/phar": "^5.26",
|
|
"nextcloud/ocp": "dev-master"
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "8.0"
|
|
}
|
|
}
|
|
} |