From be34432af4be0dacf232e016103420039cdea071 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur <eldy@destailleur.fr> Date: Wed, 18 May 2016 13:43:26 +0200 Subject: [PATCH] Add --no-update to composer commands of travis --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index ef9a7f51d32..15e92a709b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -84,23 +84,23 @@ install: - | echo "Installing Parallel Lint" - composer -n require jakub-onderka/php-parallel-lint ^0 - composer -n require jakub-onderka/php-console-highlighter ^0 + composer -n require --no-update jakub-onderka/php-parallel-lint ^0 + composer -n require --no-update jakub-onderka/php-console-highlighter ^0 echo - | echo "Installing PHP Unit" if [ "$TRAVIS_PHP_VERSION" = '5.3' ] || [ "$TRAVIS_PHP_VERSION" = '5.4' ] || [ "$TRAVIS_PHP_VERSION" = '5.5' ]; then - composer -n require phpunit/phpunit ^4 + composer -n require --no-update phpunit/phpunit ^4 fi if [ "$TRAVIS_PHP_VERSION" = '5.6' ] || [ "$TRAVIS_PHP_VERSION" = '7.0' ] || [ "$TRAVIS_PHP_VERSION" = 'nightly' ]; then - composer -n require phpunit/phpunit ^5 + composer -n require --no-update phpunit/phpunit ^5 fi echo - | echo "Installing PHP CodeSniffer" - composer require squizlabs/php_codesniffer ^2 + composer -n require --no-update squizlabs/php_codesniffer ^2 echo - | -- GitLab