瀏覽代碼

Revert "Merge remote-tracking branch 'github-ercanozkaya/master'"

This reverts commit b5eededbe9bfa62f9f74fdb62f685bc47af9a288, reversing
changes made to 799a478f2ab1297ba05c6651bf8da6d9fb988683.

This change was wrong as the GitDriver was then telling it supports
all local URIs even when they are not git repositories.
Christophe Coevoet 13 年之前
父節點
當前提交
4404c5f287
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Composer/Repository/Vcs/GitDriver.php

+ 1 - 1
src/Composer/Repository/Vcs/GitDriver.php

@@ -181,7 +181,7 @@ class GitDriver extends VcsDriver
      */
     public static function supports(IOInterface $io, $url, $deep = false)
     {
-        if (preg_match('#(^file://|^git://|\.git$|git@|//git\.|//github.com/)#i', $url)) {
+        if (preg_match('#(^git://|\.git$|git@|//git\.|//github.com/)#i', $url)) {
             return true;
         }