mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
19 lines
444 B
JSON
19 lines
444 B
JSON
{
|
|
"require-dev": {
|
|
"squizlabs/php_codesniffer": "*",
|
|
"friendsofphp/php-cs-fixer": "^3.14"
|
|
},
|
|
"scripts": {
|
|
"code-sniffer": [
|
|
"./vendor/bin/phpcs --config-set default_standard phpcs.xml",
|
|
"./vendor/bin/phpcs --config-set colors 1"
|
|
],
|
|
"post-install-cmd": [
|
|
"@code-sniffer"
|
|
],
|
|
"post-update-cmd": [
|
|
"@code-sniffer"
|
|
]
|
|
}
|
|
}
|