Do not validate URLs properly in json schema, fixes #6243
parent
e556649ad9
commit
95987f4aca
|
@ -588,7 +588,7 @@
|
||||||
"required": ["type", "url"],
|
"required": ["type", "url"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"type": { "type": "string", "enum": ["composer"] },
|
"type": { "type": "string", "enum": ["composer"] },
|
||||||
"url": { "type": "string", "format": "uri" },
|
"url": { "type": "string" },
|
||||||
"options": {
|
"options": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": true
|
"additionalProperties": true
|
||||||
|
@ -645,7 +645,7 @@
|
||||||
"required": ["type", "url"],
|
"required": ["type", "url"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"type": { "type": "string", "enum": ["pear"] },
|
"type": { "type": "string", "enum": ["pear"] },
|
||||||
"url": { "type": "string", "format": "uri" },
|
"url": { "type": "string" },
|
||||||
"vendor-alias": { "type": "string" }
|
"vendor-alias": { "type": "string" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue