40 lines
911 B
JSON
40 lines
911 B
JSON
{
|
|
"name": "digicomp/php-codesniffer",
|
|
"description": "DigiComp and in.webs PHP_CodeSniffer RuleSets",
|
|
"type": "phpcodesniffer-standard",
|
|
"license": "proprietary",
|
|
"keywords": [
|
|
"phpcs"
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"DigiComp\\PhpCodesniffer\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"DigiComp\\PhpCodesniffer\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=7.4",
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
|
|
"slevomat/coding-standard": "^8.3.0",
|
|
"squizlabs/php_codesniffer": "^3.6.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^8.0"
|
|
},
|
|
"scripts": {
|
|
"phpunit": "php vendor/bin/phpunit",
|
|
"phpcs": "php vendor/bin/phpcs --standard=Inwebs Inwebs/",
|
|
"tests": [
|
|
"@phpunit",
|
|
"@phpcs"
|
|
],
|
|
"phpcbf": "php vendor/bin/phpcbf --standard=Inwebs Inwebs/"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|