From 6bdd33da2a9f1accf29c99ffb5a1646a5ad09d65 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Wed, 3 Aug 2016 14:14:38 -0400 Subject: [PATCH] Don't install dev dependencies in test environments --- .gitlab-ci.yml | 2 +- .travis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 78229a40..5609409c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/.travis.yml b/.travis.yml index a863b2c5..cf72aec6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: php install: - - composer install + - composer install --no-dev php: - 5.5