From 00dcbb39928d6f54a6cc5fb2afccc0712270a019 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Tue, 29 Mar 2016 19:05:36 +0200 Subject: [PATCH] [ticket/14565] Workaround for php 5.3.3 PHPBB3-14565 --- travis/setup-phpbb.sh | 5 +++++ 1 file changed, 5 insertions(+) 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 ..