1
0
Fork 0

Merge branch '1.4'

pull/6249/head
Jordi Boggiano 2017-03-10 09:57:25 +01:00
commit ddadbd2864
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
### [1.4.1] - 2017-03-10
* Fixed `apcu-autoloader` config option being ignored in `dump-autoload` command
* Fixed json validation not allowing boolean for trunk-path, branches-path and tags-path in svn repos
* Fixed json validation not allowing repository URLs without scheme
### [1.4.0] - 2017-03-08 ### [1.4.0] - 2017-03-08
* Improved memory usage of dependency solver * Improved memory usage of dependency solver

View File

@ -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" }
} }
}, },