-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
35 lines (35 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
{
"name": "logansua/blizzard-api-php-client",
"description": "API client for blizzard API written in PHP",
"keywords": ["blizzard", "world of warcraft", "api", "client"],
"homepage": "https://github.com/LogansUA/blizzard-api-php-client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Oleg Kachinskiy",
"email": "[email protected]",
"role": "Creator"
},
{
"name": "Community",
"homepage": "https://github.com/LogansUA/blizzard-api-php-client/graphs/contributors",
"role": "Contributors"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/LogansUA/blizzard-api-php-client/issues"
},
"require": {
"php": ">=5.6.0",
"guzzlehttp/guzzle": "^6.2",
"symfony/options-resolver": "^3.0"
},
"autoload": {
"psr-4": {
"BlizzardApi\\": "src/"
}
},
"minimum-stability": "stable"
}