浏览代码

it looks like php 5.3.3 might not have openssl extension?

Rob Bast 9 年之前
父节点
当前提交
c292122791
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      tests/Composer/Test/Repository/Vcs/GitLabDriverTest.php

+ 2 - 1
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')),
         );
     }