1
0
Fork 0

added "example using a custom HTTP Header field" to docu, issue https://github.com/composer/composer/issues/3756

pull/3878/head
jakoch 2015-03-27 19:01:16 +01:00
parent 8cfd48c479
commit cf7441bc27
1 changed files with 26 additions and 6 deletions

View File

@ -157,6 +157,26 @@ Example using HTTP over SSL using a client certificate:
> **Tip:** See [ssl context options](http://www.php.net/manual/en/context.ssl.php) for more information.
Example using a custom HTTP Header field for token authentication:
```json
{
"repositories": [
{
"type": "composer",
"url": "https://example.org",
"options": {
"http": {
"header": [
"API-TOKEN: YOUR-API-TOKEN"
]
}
}
}
]
}
```
### Authentification
When your private repositories are password protected, you can store the authentification details permanently.