You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
290 B
Makefile

.PHONY: test
test: test-unit test-style
.PHONY: test-unit
test-unit: vendor
vendor/bin/phpunit
.PHONY: test-style
test-style: vendor
vendor/bin/phpcs
vendor: composer.json
composer install --ignore-platform-reqs
.PHONY: clean
clean:
rm -rf vendor
rm -f tests/.phpunit.result.cache