mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
[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.
This commit is contained in:
parent
d9b23a4c3b
commit
9ec83e6b52
1 changed files with 11 additions and 2 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue