1
0
Fork 0

Update 05-repositories.md

Refer to #6056
pull/6095/head
Matteo 2017-01-10 13:46:33 +01:00 committed by GitHub
parent 285ff274ac
commit 639c0fb5ce
1 changed files with 20 additions and 0 deletions

View File

@ -292,6 +292,26 @@ repository as it would with any other git repository instead of using the
GitHub API. But unlike using the `git` driver directly, Composer will still
attempt to use github's zip files.
Please note:
* **To let Composer choose which driver to use** the repository type needs to be defined as "vcs"
* **BitBucket driver** require the OAuth method to access to BitBucket REST APIs.
If you want to know how to create a OAuth consumer using BitBucket, please refer to [this link](https://confluence.atlassian.com/bitbucket/oauth-on-bitbucket-cloud-238027431.html).
After created an OAuth consumer, you need to setup your composer.json config section with
the requested credentials like this (more info [here](https://getcomposer.org/doc/06-config.md#bitbucket-oauth)):
```json
{
"config": {
"bitbucket-oauth": {
"bitbucket.org": {
"consumer-key": "myKey",
"consumer-secret": "mySecret"
}
}
}
}
```
#### Subversion Options
Since Subversion has no native concept of branches and tags, Composer assumes