mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-01-17 15:18:17 +01:00
11 lines
183 B
Makefile
11 lines
183 B
Makefile
.PHONY: phpstan php-cs-fixer
|
|
|
|
tools/vendor:
|
|
composer install -d tools
|
|
|
|
phpstan: tools/vendor
|
|
tools/vendor/bin/phpstan
|
|
|
|
php-cs-fixer: tools/vendor
|
|
tools/vendor/bin/php-cs-fixer fix
|