-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
36 lines (36 loc) · 969 Bytes
/
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
{
"name": "paquettg/leaguewrap",
"type": "library",
"description": "A wrapper for the League of Legends API.",
"version": "0.6.4",
"keywords": ["League", "legends", "wrap", "api", "facade", "proxy"],
"homepage": "https://github.com/paquettg/leaguewrap",
"license": "MIT",
"authors": [
{
"name": "Gilles Paquette",
"email": "[email protected]",
"homepage": "http://gillespaquette.ca"
}
],
"abandoned": "league-php/leaguewrap",
"suggest": {
"league-php": "Successor of this package."
},
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "~6.1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8.0",
"mockery/mockery": "~0.9.0",
"satooshi/php-coveralls": "~0.6.0"
},
"autoload": {
"psr-0": {
"LeagueWrap": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}