1
0
Fork 0

Add missing bitbucket-oauth from composer schema

pull/10688/head
Jordi Boggiano 2022-04-01 11:15:57 +02:00
parent 2b99d069b2
commit cbda47634e
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 18 additions and 0 deletions

View File

@ -498,6 +498,24 @@
"type": "string" "type": "string"
} }
}, },
"bitbucket-oauth": {
"type": "object",
"description": "An object of domain name => {\"consumer-key\": \"...\", \"consumer-secret\": \"...\"}.",
"additionalProperties": {
"type": "object",
"required": ["consumer-key", "consumer-secret"],
"properties": {
"consumer-key": {
"type": "string",
"description": "The consumer-key used for OAuth authentication"
},
"consumer-secret": {
"type": "string",
"description": "The consumer-secret used for OAuth authentication"
}
}
}
},
"use-github-api": { "use-github-api": {
"type": "boolean", "type": "boolean",
"description": "Defaults to true. If set to false, globally disables the use of the GitHub API for all GitHub repositories and clones the repository as it would for any other repository." "description": "Defaults to true. If set to false, globally disables the use of the GitHub API for all GitHub repositories and clones the repository as it would for any other repository."