Don't install dev dependencies in test environments

This commit is contained in:
Timothy Warren 2016-08-03 14:14:38 -04:00
parent aac478a455
commit 282fb44603
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ before_script:
- bash build/docker_install.sh > /dev/null
# Install composer dependencies
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install
- php composer.phar install --no-dev
# Composer stores all downloaded packages in the vendor/ directory.
# Do not use the following if the vendor/ directory is commited to

View File

@ -1,7 +1,7 @@
language: php
install:
- composer install
- composer install --no-dev
php:
- 5.5