Skip to content

Commit 9bf4c14

Browse files
committed
refactor(composer): streamline script commands for better clarity and functionality
1 parent 36a408a commit 9bf4c14

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

booster/composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,15 @@
2020
"generate-api-spec": "php documentation/api.php",
2121
"check-cs": "vendor/bin/ecs check --ansi",
2222
"fix-cs": "vendor/bin/ecs check --fix --ansi",
23+
"ecs": "vendor/bin/ecs check --ansi",
2324
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon.dist",
2425
"phpstan:sonar": "vendor/bin/phpstan analyse -c phpstan.neon.dist --error-format=prettyJson > phpstan_sonar.json",
26+
"psalm": "vendor/bin/psalm",
27+
"psalm-phar": "vendor/bin/psalm.phar",
2528
"psalm:sonar": "vendor/bin/psalm --report=sonarqube.json; mv sonarqube.json psalm_sonar.json",
2629
"psalm-phar:sonar": "vendor/bin/psalm.phar --report=sonarqube.json; mv sonarqube.json psalm_sonar.json",
27-
"rector": "vendor/bin/rector",
30+
"rector": "vendor/bin/rector process --ansi",
31+
"rector:dry": "vendor/bin/rector process --dry-run --ansi",
2832
"deptrac": "vendor/bin/deptrac",
2933
"deptrac:image": "vendor/bin/deptrac --formatter=graphviz-image --output=deptrac.png",
3034
"test:pest": "vendor/bin/pest --colors=always",

0 commit comments

Comments
 (0)