Move all files to php/pest/
This commit is contained in:
parent
a62c22030e
commit
8784174d85
23 changed files with 0 additions and 0 deletions
19
php/pest/Makefile
Normal file
19
php/pest/Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
CLEAN_PATHS=vendor
|
||||
PEST_PATH=vendor/bin/pest
|
||||
|
||||
all: test
|
||||
|
||||
clean:
|
||||
@for dir in $(CLEAN_PATHS); do \
|
||||
rm -fr $$dir; \
|
||||
done
|
||||
|
||||
pest: vendor
|
||||
@$(PEST_PATH)
|
||||
|
||||
test: pest
|
||||
|
||||
vendor: composer.json composer.lock
|
||||
@composer install
|
||||
|
||||
.PHONY: all clean pest test
|
Loading…
Add table
Add a link
Reference in a new issue