We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e3f92a1 + 71fea6a commit 3c309fdCopy full SHA for 3c309fd
3 files changed
.gitignore
@@ -13,6 +13,7 @@ nbproject/*
13
.DS_Store
14
.cache
15
.phpunit.cache
16
+.phpcs.cache
17
.project
18
.settings
19
.svn
composer.json
@@ -60,8 +60,8 @@
60
}
61
},
62
"scripts": {
63
- "cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
64
- "cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/",
+ "cs-check": "phpcs",
+ "cs-fix": "phpcbf",
65
"phpstan": "tools/phpstan analyse",
66
"stan": "@phpstan",
67
"stan-baseline": "tools/phpstan --generate-baseline",
phpcs.xml
@@ -5,5 +5,8 @@
5
6
<rule ref="CakePHP"/>
7
8
- <arg value="s"/>
+ <arg value="nps"/>
9
+ <arg name="colors"/>
10
+ <arg name="parallel" value="4"/>
11
+ <arg name="cache" value=".phpcs.cache"/>
12
</ruleset>
0 commit comments