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.
This commit is contained in:
Lucas Bickel 2017-07-17 22:02:46 +02:00
parent 6e2cb2b2a8
commit f794a579d6
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash -e
composer install
composer install --no-dev
git_build=""
if [ -d .git ]; then