-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.example.json
More file actions
49 lines (49 loc) · 1.23 KB
/
input.example.json
File metadata and controls
49 lines (49 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "myorg/satis",
"homepage": "http://packages.example.org",
"repositories": [
{ "type": "composer", "url": "http://packages.example.org/" },
{ "type": "vcs", "url": "https://github.com/mycompany/privaterepo" },
{ "type": "vcs", "url": "http://svn.example.org/private/repo" },
{
"name": "mycompany/privaterepo2",
"type": "vcs",
"url": "https://github.com/mycompany/privaterepo2",
"options": {
"ssh2": {
"username": "composer",
"pubkey_file": "/path/to/.ssh/id_rsa.pub",
"privkey_file": "/path/to/.ssh/id_rsa"
},
"ssl": {
"local_cert": "/path/to/.ssl/composer.pem"
},
"http": {
"header": ["API-TOKEN: YOUR-API-TOKEN"]
}
}
}
],
"require-all": true,
"sources": [
{
"sourceType": "gitlab",
"sourceIdent": "349181",
"sourceAuth": "GITLAB_PAT",
"exclude": [
"repository-name",
"other-repository"
]
},
{
"sourceType": "github",
"sourceIdent": "composer",
"sourceAuth": "GITHUB_PAT"
},
{
"sourceType": "azdo",
"sourceIdent": "https://dev.azure.com/myorg/myproject",
"sourceAuth": "AZDO_PAT"
}
]
}