We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 903fedf commit 0d8be44Copy full SHA for 0d8be44
composer.json
@@ -24,8 +24,10 @@
24
"ext-json": "*"
25
},
26
"require-dev": {
27
+ "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
28
"phpstan/phpstan": "^1.10",
- "phpunit/phpunit": "^9.5 || ^10.0"
29
+ "phpunit/phpunit": "^9.5 || ^10.0",
30
+ "squizlabs/php_codesniffer": "^3.7"
31
32
"minimum-stability": "dev",
33
"prefer-stable": true,
@@ -53,8 +55,11 @@
53
55
"analyze": "phpstan analyze",
54
56
"check": [
57
"@test",
- "@analyze"
58
+ "@analyze",
59
+ "@cs"
60
],
61
+ "cs": "phpcs",
62
+ "cs-fix": "phpcbf",
63
"test": "phpunit"
64
}
65
0 commit comments