Forráskód Böngészése

Loosen the validation for the URL field of VCS repositories

The URL of the VCS repository may not match the uri pattern of the JSON
schema spec, for instance when using a SSH URL of the repository.
Christophe Coevoet 8 éve
szülő
commit
37505f40f4
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      res/composer-schema.json

+ 1 - 1
res/composer-schema.json

@@ -596,7 +596,7 @@
             "required": ["type", "url"],
             "properties": {
                 "type": { "type": "string", "enum": ["vcs", "github", "git", "gitlab", "git-bitbucket", "hg", "hg-bitbucket", "fossil", "perforce", "svn"] },
-                "url": { "type": "string", "format": "uri" },
+                "url": { "type": "string" },
                 "no-api": { "type": "boolean" },
                 "secure-http": { "type": "boolean" },
                 "svn-cache-credentials": { "type": "boolean" },