Add Makefile

Add a Makefile with commands for 'phpunit' and 'test'.

This can be expanded later for PHPCS etc.
This commit is contained in:
Oliver Davies 2020-05-30 03:29:14 +01:00
parent b042256e45
commit 8069ccb750
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View file

@ -3,5 +3,6 @@
!/.github/**
!/.gitignore
!/composer.json
!/Makefile
!/src/**
!/tests/**

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
.PHONY: *
phpunit:
php vendor/bin/phpunit -v --color=always --testdox tests
test: phpunit