php-codesniffer/composer.json
Ferdinand Kuhl 7063c47d64
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
Fixing doc type annotation sniffs to correctly ignore attributes
2023-02-10 15:37:30 +01:00

41 lines
931 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",
"php": ">=8.1"
},
"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
}
}