From e556649ad9df2f5bcc259105cbbd7d0b0d2b9e89 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 9 Mar 2017 09:55:41 +0100 Subject: [PATCH] Allow trunk-path, branches-path and tags-path to be bool as well as string, fixes #6238 --- res/composer-schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/res/composer-schema.json b/res/composer-schema.json index 6c3f65ef8..8bfa12356 100644 --- a/res/composer-schema.json +++ b/res/composer-schema.json @@ -606,9 +606,9 @@ "no-api": { "type": "boolean" }, "secure-http": { "type": "boolean" }, "svn-cache-credentials": { "type": "boolean" }, - "trunk-path": { "type": "string" }, - "branches-path": { "type": "string" }, - "tags-path": { "type": "string" }, + "trunk-path": { "type": ["string", "boolean"] }, + "branches-path": { "type": ["string", "boolean"] }, + "tags-path": { "type": ["string", "boolean"] }, "package-path": { "type": "string" }, "depot": { "type": "string" }, "branch": { "type": "string" },