This commit is contained in:
Oliver Davies 2020-07-03 18:16:27 +01:00
commit 70aa53bd16
7 changed files with 1895 additions and 0 deletions

19
Makefile Normal file
View file

@ -0,0 +1,19 @@
CLEAN_PATHS=vendor
PHPUNIT_PATH=vendor/bin/phpunit
all: test
clean:
@for dir in $(CLEAN_PATHS); do \
rm -fr $$dir; \
done
phpunit: vendor
@$(PHPUNIT_PATH) --colors=always --testdox
test: phpunit
vendor: composer.json composer.lock
@composer install
.PHONY: all clean phpunit test