diff --git a/.gitignore b/.gitignore index ac540af..f024f1f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,6 @@ !/.github/** !/.gitignore !/composer.json +!/Makefile !/src/** !/tests/** diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a4e4065 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +.PHONY: * + +phpunit: + php vendor/bin/phpunit -v --color=always --testdox tests + +test: phpunit +