forked from dolejska-daniel/riot-api-league
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 819 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
{
"name": "dolejska-daniel/riot-api-league",
"type": "library",
"description": "Riot League of Legends API wrapper for PHP7",
"keywords": ["riot", "league of legends", "api", "wrapper", "php7"],
"homepage": "https://github.com/dolejska-daniel/riot-api-league",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Daniel Dolejška",
"email": "[email protected]",
"role": "Developer"
}
],
"scripts": {
"test": "vendor/bin/phpunit -v --bootstrap phpunit.php --configuration phpunit.xml --coverage-text --coverage-html build/coverage"
},
"require": {
"dolejska-daniel/riot-api-base": "^1",
"php": ">=7.3",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"RiotAPI\\LeagueAPI\\": "src/LeagueAPI"
}
},
"minimum-stability": "stable"
}