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 ..