1
0
Fork 0

it looks like php 5.3.3 might not have openssl extension?

pull/4656/head
Rob Bast 2015-11-30 15:51:49 +01:00
parent 6d9e04c0e9
commit c292122791
1 changed files with 2 additions and 1 deletions

View File

@ -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')),
);
}