From da565c997e3b73bf37f4469191f7fad1acc3c3da Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Mon, 30 Dec 2019 23:30:27 -0700 Subject: [PATCH] Added some Makefile contexts --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index f306013..447d74b 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,11 @@ +build: + @composer install && npm install + +update upgrade: + @composer update && npm update + clear-cache: @rm app/cache/* -rfv + +test: + @php-cs-fixer fix --diff --dry-run && psalm --show-info=false && phpunit