mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-01-16 14:48:32 +01:00
11 lines
191 B
Makefile
11 lines
191 B
Makefile
.PHONY: phpstan php-cs-fixer
|
|
|
|
tools/vendor:
|
|
composer install -d tools
|
|
|
|
phpstan: tools/vendor
|
|
php tools/vendor/bin/phpstan
|
|
|
|
php-cs-fixer: tools/vendor
|
|
php tools/vendor/bin/php-cs-fixer fix
|