We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9ffe87 commit f6d1e5aCopy full SHA for f6d1e5a
composer.json
@@ -106,6 +106,16 @@
106
"cache:clear": "symfony-cmd",
107
"assets:install %PUBLIC_DIR%": "symfony-cmd",
108
"importmap:install": "symfony-cmd"
109
- }
+ },
110
+ "pipeline": [
111
+ "composer validate --strict",
112
+ "php -l src/**/*.php tests/**/*.php",
113
+ "bin/console lint:twig templates",
114
+ "bin/console lint:yaml config",
115
+ "bin/console lint:container",
116
+ "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run",
117
+ "phpstan analyse",
118
+ "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=coverage"
119
+ ]
120
}
121
0 commit comments