phpdoc-parser/Makefile

31 lines
568 B
Makefile
Raw Normal View History

.PHONY: check
check: lint cs tests phpstan
.PHONY: tests
tests: build-abnfgen
php vendor/bin/phpunit
.PHONY: lint
lint:
php vendor/bin/parallel-lint --colors \
src tests \
--exclude tests/PHPStan/Analyser/data \
--exclude tests/PHPStan/Rules/Methods/data \
--exclude tests/PHPStan/Rules/Functions/data
.PHONY: cs
cs:
composer install --working-dir build-cs && php build-cs/vendor/bin/phpcs
.PHONY: cs-fix
cs-fix:
php build-cs/vendor/bin/phpcbf
.PHONY: phpstan
phpstan:
2021-06-11 15:20:59 +02:00
php vendor/bin/phpstan
.PHONY: build-abnfgen
build-abnfgen:
./build-abnfgen.sh