From 17a5bdf1626aff8191866de883be04fab47b5283 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 13 Feb 2013 12:54:52 +0100 Subject: [PATCH] Normalize github URLs generated by the GitHubDriver, fixes #1551 --- src/Composer/Repository/Vcs/GitHubDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Repository/Vcs/GitHubDriver.php b/src/Composer/Repository/Vcs/GitHubDriver.php index 0c418bc08..2af0234fb 100755 --- a/src/Composer/Repository/Vcs/GitHubDriver.php +++ b/src/Composer/Repository/Vcs/GitHubDriver.php @@ -76,7 +76,7 @@ class GitHubDriver extends VcsDriver return $this->gitDriver->getUrl(); } - return $this->url; + return 'https://github.com/'.$this->owner.'/'.$this->repository.'.git'; } /**