-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (44 loc) · 1.15 KB
/
composer.json
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
50
51
52
{
"name" : "sdwru/awx-v2",
"type" : "library",
"description": "AWX API v2 PHP 5.4+ library",
"keywords" : ["AWX", "Tower", "Ansible", "API"],
"homepage" : "https://github.com/sdwru/awx-v2",
"license" : "MIT",
"authors": [
{
"name" : "sdwru",
"role" : "Developer"
}
],
"support": {
"issues": "https://github.com/sdwru/awx-v2/issues",
"source": "https://github.com/sdwru/awx-v2"
},
"require": {
"php": "^7.1.0",
"ext-json": "*"
},
"require-dev": {
"kriswallsmith/buzz": "^0.16",
"guzzlehttp/guzzle": "^5.3|^6.3|^7",
"phpspec/phpspec": "^2.5"
},
"suggest": {
"kriswallsmith/buzz": "To use BuzzAdapter, require kriswallsmith/buzz:^0.16.",
"guzzlehttp/guzzle" : "To use GuzzleHttpAdapter, require guzzlehttp/guzzle:^5.3|^6.3|^7."
},
"autoload": {
"psr-4": {
"AwxV2\\": "src/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "2.3-dev"
}
}
}