From 9ec83e6b52478a16c133d84b16c377942bab6457 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Mon, 5 Apr 2021 17:26:00 +0200 Subject: [PATCH] [TASK] Complete the ci:php and ci:static Composer commands groups (#231) Now the `ci:php` and `ci:static` Composer commands call all commands that belong in those groups. --- composer.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 4fbc421..6109389 100644 --- a/composer.json +++ b/composer.json @@ -81,8 +81,11 @@ ], "ci:json:lint": "find . ! -path '*.Build/*' -name '*.json' | xargs .Build/vendor/bin/jsonlint -q", "ci:php": [ + "@ci:php:copypaste", "@ci:php:cs-fixer", - "@ci:php:sniff" + "@ci:php:lint", + "@ci:php:sniff", + "@ci:php:stan" ], "ci:php:copypaste": "php ./tools/phpcpd Classes Configuration Tests", "ci:php:cs-fixer": "php ./tools/php-cs-fixer fix --config .php_cs.php -v --dry-run --using-cache false --diff --diff-format=udiff", @@ -90,9 +93,15 @@ "ci:php:sniff": "php ./tools/phpcs Classes Configuration Tests", "ci:php:stan": "php ./tools/phpstan analyse Classes", "ci:static": [ + "@ci:composer:normalize", + "@ci:json:lint", + "@ci:php:copypaste", + "@ci:php:cs-fixer", "@ci:php:lint", "@ci:php:sniff", - "@ci:ts:lint" + "@ci:php:stan", + "@ci:ts:lint", + "@ci:yaml:lint" ], "ci:tests": [ "@ci:tests:unit",