Don't install dev dependencies in test environments

This commit is contained in:
Timothy Warren 2016-08-03 14:14:38 -04:00
parent 3894ba8312
commit 6bdd33da2a
2 changed files with 2 additions and 2 deletions

View File

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

View File

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