11 lines
238 B
Makefile
11 lines
238 B
Makefile
install-dev-tools:
|
|
composer update --working-dir=dev-tools
|
|
|
|
run-php-cs-fixer:
|
|
dev-tools/vendor/bin/php-cs-fixer fix $(ARGS)
|
|
|
|
run-phpstan:
|
|
dev-tools/vendor/bin/phpstan analyze $(ARGS)
|
|
|
|
run-phpunit:
|
|
dev-tools/vendor/bin/phpunit $(ARGS)
|