Makefile 207 B

123456789101112131415
  1. all: clean test
  2. test:
  3. vendor/bin/phpunit
  4. coverage:
  5. vendor/bin/phpunit --coverage-html=artifacts/coverage
  6. view-coverage:
  7. open artifacts/coverage/index.html
  8. clean:
  9. rm -rf artifacts/*
  10. .PHONY: coverage