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.
This commit is contained in:
Sam Minnee 2013-05-30 16:23:29 +12:00
parent 16c72aacb6
commit 26147bb962
1 changed files with 4 additions and 0 deletions

View File

@ -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"
}