From f794a579d6ff90b8cf8f374a3dab618b7d74777c Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Mon, 17 Jul 2017 22:02:46 +0200 Subject: [PATCH] Don't pull dev packages on install We don't need them for the end user runtime and this speeds up the install quite a bit when installing from the full tarball. Devs will need to run `composer install` to run unit tests locally but that's about it. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 225828d87..87ac53767 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/bash -e -composer install +composer install --no-dev git_build="" if [ -d .git ]; then