소스 검색

Allow trunk-path, branches-path and tags-path to be bool as well as string, fixes #6238

Jordi Boggiano 8 년 전
부모
커밋
e556649ad9
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      res/composer-schema.json

+ 3 - 3
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" },