-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.13 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
53
54
{
"name": "adventureres/php-sdk-v1",
"description": "AdventureRes SDK for PHP",
"keywords": ["AdventureRes", "sdk"],
"type": "library",
"homepage": "https://github.com/paramoredigital",
"license": "GPL-3.0+",
"authors": [
{
"name": "AdventureRes",
"homepage": "http://www.adventureres.com/",
"role": "Owner"
},
{
"name": "Keith Ferguson",
"email": "[email protected]",
"role": "Developer - API"
},
{
"name": "Ben Wilkins",
"email": "[email protected]",
"role": "Developer - SDK"
},
{
"name": "Cameron West",
"email": "[email protected]",
"role": "Developer - SDK"
}
],
"require": {
"php": ">=5.4.0",
"respect/validation": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.8",
"guzzlehttp/guzzle": "~5.0"
},
"autoload": {
"psr-4": {
"AdventureRes\\": "src/AdventureRes/"
}
},
"autoload-dev": {
"psr-4": {
"AdventureRes\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
}
}