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