From 4b525f917901ddf2b7f885536ee0288744b303aa Mon Sep 17 00:00:00 2001 From: Fabrice Gangler <fabrice.gangler@adullact.org> Date: Thu, 20 Feb 2025 10:43:48 +0100 Subject: [PATCH] chore(make): allow to start symfony server and run "composer update" command --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index bb36760..080c23c 100644 --- a/Makefile +++ b/Makefile @@ -230,6 +230,13 @@ composer_install: ## ... cd webapp/ && composer install .PHONY: composer_install +composer_update: + cd webapp/ && composer update + +symfony_server_start: + cd webapp/ && symfony server:start + + # Checks for outdated packages # #################################################################### -- GitLab