diff --git a/composer.phar b/composer.phar index a3bd28e4f4..fca2a8d72d 100755 Binary files a/composer.phar and b/composer.phar differ diff --git a/travis/setup-phpbb.sh b/travis/setup-phpbb.sh index 8cb2f4cd68..4daa754481 100755 --- a/travis/setup-phpbb.sh +++ b/travis/setup-phpbb.sh @@ -37,5 +37,10 @@ then fi cd phpBB +if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.3.4', '<');"` == "1" ] +then + php ../composer.phar config disable-tls true +fi php ../composer.phar install --dev --no-interaction + cd ..