-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.02 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
{
"name": "gw2treasures/gw2tools",
"description": "Collection of useful helpers to work with data for Guild Wars 2 in PHP",
"keywords": ["GW2Tools", "GW2", "Guild Wars 2", "GW2 API", "Chatlink", "Chatlinks", "Guild Emblems", "Item Attributes"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "darthmaim",
"email": "darth.maim@arcor.de"
}
],
"support": {
"issues": "https://github.com/GW2Treasures/gw2tools/issues",
"source": "https://github.com/GW2Treasures/gw2tools"
},
"require": {
"php": ">=5.5.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.0",
"mtdowling/burgomaster": "^0.0.2"
},
"suggest": {
"gw2treasures/gw2api": "^2.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"GW2Treasures\\GW2Tools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GW2Treasures\\GW2Tools\\Tests\\": "tests"
}
}
}