1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 16:42:57 +00:00

Make sure github driver is used for all github urls

This commit is contained in:
Jordi Boggiano 2012-05-12 18:24:07 +02:00
parent 160d2e0847
commit c2933028e8
2 changed files with 9 additions and 2 deletions

View file

@ -43,7 +43,7 @@ class GitHubDriver extends VcsDriver
*/
public function initialize()
{
preg_match('#^(?:https?|git)://github\.com/([^/]+)/(.+?)(?:\.git)?$#', $this->url, $match);
preg_match('#^(?:(?:https?|git)://github\.com/|git@github\.com:)([^/]+)/(.+?)(?:\.git)?$#', $this->url, $match);
$this->owner = $match[1];
$this->repository = $match[2];
$this->originUrl = 'github.com';
@ -177,7 +177,7 @@ class GitHubDriver extends VcsDriver
*/
public static function supports(IOInterface $io, $url, $deep = false)
{
if (!preg_match('#^(?:https?|git)://github\.com/([^/]+)/(.+?)(?:\.git)?$#', $url)) {
if (!preg_match('#^((?:https?|git)://github\.com/|git@github\.com:)([^/]+)/(.+?)(?:\.git)?$#', $url)) {
return false;
}