From 81a3b7124826bc221b96735d9762cb2f92a57ea4 Mon Sep 17 00:00:00 2001 From: MarioRadu Date: Thu, 12 Dec 2024 22:50:34 +0200 Subject: [PATCH] ignore development files on production env Signed-off-by: MarioRadu --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 71a1ffe..ee94f26 100644 --- a/composer.json +++ b/composer.json @@ -104,12 +104,12 @@ }, "scripts": { "post-create-project-cmd": [ - "@development-enable", - "echo Running post-create-project-cmd commands" + "@development-enable" ], "post-update-cmd": [ + "laminas-development-mode status", "php bin/composer-post-install-script.php", - "echo Running post-update-cmd commands" + "laminas-development-mode status" ], "development-disable": "laminas-development-mode disable", "development-enable": "laminas-development-mode enable",