Move all files to php/phpunit/
This commit is contained in:
parent
533bcaf826
commit
f6bf98bf1e
9 changed files with 0 additions and 0 deletions
19
php/phpunit/Makefile
Normal file
19
php/phpunit/Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue