We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20d7f1e commit 3815528Copy full SHA for 3815528
.gitignore
@@ -2,3 +2,4 @@
2
/composer.lock
3
/tools
4
.phpunit.result.cache
5
+.phpcs.cache
composer.json
@@ -43,8 +43,8 @@
43
"@cs-check",
44
"@test"
45
],
46
- "cs-check": "phpcs --colors --parallel=16 -p",
47
- "cs-fix": "phpcbf --colors --parallel=16 -p",
+ "cs-check": "phpcs",
+ "cs-fix": "phpcbf",
48
"phpstan": "tools/phpstan analyse",
49
"stan": "@phpstan",
50
"stan-tests": "phpstan.phar analyze -c tests/phpstan.neon",
phpcs.xml
@@ -3,4 +3,8 @@
<file>src/</file>
<file>tests/</file>
<rule ref="CakePHP" />
6
+ <arg value="nps"/>
7
+ <arg name="colors"/>
8
+ <arg name="parallel" value="4"/>
9
+ <arg name="cache" value=".phpcs.cache"/>
10
</ruleset>
0 commit comments