Browse Source

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 năm trước cách đây
mục cha
commit
4404c5f287
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;
         }