We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4439096 + cb23615 commit d6c30feCopy full SHA for d6c30fe
.gitignore
@@ -7,6 +7,7 @@
7
/tools
8
.phpunit.result.cache
9
.phpunit.cache
10
+.phpcs.cache
11
12
# OS generated files #
13
######################
composer.json
@@ -69,8 +69,8 @@
69
"@cs-check",
70
"@test"
71
],
72
- "cs-check": "phpcs --colors -p",
73
- "cs-fix": "phpcbf --colors -p",
+ "cs-check": "phpcs",
+ "cs-fix": "phpcbf",
74
"phpstan": "tools/phpstan analyse",
75
"stan": "@phpstan",
76
"stan-baseline": "tools/phpstan --generate-baseline",
phpcs.xml
@@ -4,4 +4,9 @@
4
5
<file>src/</file>
6
<file>tests/</file>
+
+ <arg value="nps"/>
+ <arg name="colors"/>
+ <arg name="parallel" value="4"/>
+ <arg name="cache" value=".phpcs.cache"/>
</ruleset>
0 commit comments