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.
2 parents c802432 + 730f985 commit 083a1b6Copy full SHA for 083a1b6
composer.json
@@ -53,11 +53,20 @@
53
"psalm",
54
"rector process --dry-run"
55
],
56
+ "sa": "@analyze",
57
"ci": [
58
"Composer\\Config::disableProcessTimeout",
59
+ "@cs",
60
+ "@deduplicate",
61
+ "@inspect",
62
"@analyze",
- "@style"
63
+ "@test"
64
- "style": "php-cs-fixer fix --verbose --ansi --using-cache=no"
65
+ "cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff",
66
+ "cs-fix": "php-cs-fixer fix --ansi --verbose --diff --using-cache=yes",
67
+ "style": "@cs-fix",
68
+ "deduplicate": "phpcpd app/ src/",
69
+ "inspect": "deptrac analyze --cache-file=build/deptrac.cache",
70
+ "mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit"
71
}
72
0 commit comments