From 26147bb962ba8246e3bb0dc61624bcc45019d996 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Thu, 30 May 2013 16:23:29 +1200 Subject: [PATCH] NEW: Added post-install and post-update dev/build call. With this change, composer will automatically call dev/build after an update or install command. The main reason that this is 3.1-only is that previous releases would have necessitated the use of 'sudo -u www-data', which is too environment-specific. One thing that this may cause problems with is 'composer create-project' in an environment without a _ss_environment file. It will call dev/build, and dev/build will throw an error. That should be fixed in a subsequent commit. --- composer.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/composer.json b/composer.json index be1648e..a51123a 100644 --- a/composer.json +++ b/composer.json @@ -10,5 +10,9 @@ "config": { "process-timeout": 600 }, + "scripts": { + "post-install-cmd": "php ./framework/cli-script.php dev/build", + "post-update-cmd": "php ./framework/cli-script.php dev/build" + }, "minimum-stability": "dev" }