From c29212279126d58e88baacfaccc4719d4c52c723 Mon Sep 17 00:00:00 2001 From: Rob Bast Date: Mon, 30 Nov 2015 15:51:49 +0100 Subject: [PATCH] it looks like php 5.3.3 might not have openssl extension? --- tests/Composer/Test/Repository/Vcs/GitLabDriverTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Composer/Test/Repository/Vcs/GitLabDriverTest.php b/tests/Composer/Test/Repository/Vcs/GitLabDriverTest.php index 0b8441514..dc08b9aa8 100644 --- a/tests/Composer/Test/Repository/Vcs/GitLabDriverTest.php +++ b/tests/Composer/Test/Repository/Vcs/GitLabDriverTest.php @@ -216,7 +216,8 @@ JSON; array('git@gitlab.com:foo/bar.git', extension_loaded('openssl')), array('git@example.com:foo/bar.git', false), array('http://example.com/foo/bar', false), - array('https://mycompany.com/gitlab/mygroup/myproject', true), + array('http://mycompany.com/gitlab/mygroup/myproject', true), + array('https://mycompany.com/gitlab/mygroup/myproject', extension_loaded('openssl')), ); }