diff --git a/Makefile b/Makefile index 83becc7..41f1bf9 100644 --- a/Makefile +++ b/Makefile @@ -2,12 +2,15 @@ PATH := $(shell pwd)/bin:$(PATH) $(shell cp -n dev.env .env) include .env +.PHONY: build build: docker build --build-arg PHP_VERSION=$(PHP_VERSION) -t $(PHP_DEV_IMAGE) . +.PHONY: install install: build composer install +.PHONY: test test: vendor/bin/phpunit