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 788b9cd commit 603fe2fCopy full SHA for 603fe2f
composer.json
@@ -41,5 +41,23 @@
41
"allow-plugins": {
42
"dealerdirect/phpcodesniffer-composer-installer": true
43
}
44
+ },
45
+ "scripts": {
46
+ "test": "phpunit",
47
+ "cs": "vendor/bin/phpcs",
48
+ "cs:fix": "vendor/bin/phpcbf",
49
+ "analyse": "vendor/bin/phpstan analyze",
50
+ "rector": "vendor/bin/rector --dry-run",
51
+ "rector:fix": "vendor/bin/rector",
52
+ "check": [
53
+ "@cs",
54
+ "@analyse",
55
+ "@test",
56
+ "@rector"
57
+ ],
58
+ "fix": [
59
+ "@rector:fix",
60
+ "@cs:fix"
61
+ ]
62
63
0 commit comments