forked from jyggen/bnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "boo/bnet",
"type": "library",
"description": "Library for working with the Battle.net Web APIs.",
"keywords": [
"API",
"Battle.net",
"Blizzard",
"bnet",
"Diablo",
"Hearthstone",
"Overwatch",
"Starcraft",
"Warcraft"
],
"license": "MIT",
"authors": [
{
"name": "Jonas Stendahl",
"email": "jonas@stendahl.me"
}
],
"require": {
"php": "^7.1",
"ext-mbstring": "*",
"league/oauth2-client": "^2.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"ext-json": "*",
"codedungeon/phpunit-result-printer": "^0.20.1",
"friendsofphp/php-cs-fixer": "^2.13",
"guzzlehttp/guzzle": "^6.3.3",
"http-interop/http-factory-guzzle": "^1.0.0",
"jakub-onderka/php-parallel-lint": "^1.0.0",
"localheinz/composer-normalize": "^1.0.0",
"maglnet/composer-require-checker": "^1.1",
"php-coveralls/php-coveralls": "^2.1.0",
"php-vcr/php-vcr": "^1.4.4",
"php-vcr/phpunit-testlistener-vcr": "^3.2.1",
"phpstan/phpstan": "^0.10.3",
"phpunit/phpunit": "^7.3.5",
"symfony/css-selector": "^4.1.4",
"symfony/dom-crawler": "^4.1.4",
"symfony/var-dumper": "^4.1.4",
"twig/twig": "^2.5.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Boo\\BattleNet\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Boo\\BattleNet\\Tests\\": "tests"
}
},
"support": {
"issues": "https://github.com/jyggen/bnet/issues",
"source": "https://github.com/jyggen/bnet"
}
}