From 94a1f16c9641f7a4163e6e00ec7273b983c21fb2 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 30 Nov 2017 10:52:33 +0100 Subject: [PATCH] Fix scheme in public gitlab URLs, refs #6683 --- src/Composer/Repository/Vcs/GitLabDriver.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Composer/Repository/Vcs/GitLabDriver.php b/src/Composer/Repository/Vcs/GitLabDriver.php index 45cdac717..b883eefea 100644 --- a/src/Composer/Repository/Vcs/GitLabDriver.php +++ b/src/Composer/Repository/Vcs/GitLabDriver.php @@ -311,7 +311,7 @@ class GitLabDriver extends VcsDriver if (isset($this->project['visibility'])) { $this->isPrivate = $this->project['visibility'] !== 'public'; } else { - // client is not authendicated, therefore repository has to be public + // client is not authendicated, therefore repository has to be public $this->isPrivate = false; } } @@ -351,7 +351,7 @@ class GitLabDriver extends VcsDriver protected function generatePublicUrl() { - return 'https://' . $this->originUrl . '/'.$this->namespace.'/'.$this->repository.'.git'; + return $this->scheme . '://' . $this->originUrl . '/'.$this->namespace.'/'.$this->repository.'.git'; } protected function setupGitDriver($url)