From 38d0d852339eacc0034af9339dd8fd7d4896b04a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 18 May 2016 16:53:17 +0200 Subject: [PATCH] Test travis without this fu... composer --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7c103980517..2b1a55b22b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -94,9 +94,9 @@ install: - | 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 - fi + #if [ "$TRAVIS_PHP_VERSION" = '5.3' ] || [ "$TRAVIS_PHP_VERSION" = '5.4' ] || [ "$TRAVIS_PHP_VERSION" = '5.5' ]; then + # composer -n require 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 fi @@ -104,9 +104,9 @@ install: - | echo "Installing PHP CodeSniffer" - if [ "$TRAVIS_PHP_VERSION" = '5.6' ]; then - composer -n require squizlabs/php_codesniffer ^2 - fi + #if [ "$TRAVIS_PHP_VERSION" = '5.6' ]; then + # composer -n require squizlabs/php_codesniffer ^2 + #fi echo - |