forked from dolejska-daniel/riot-api-league
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 906 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
37
38
{
"name": "dolejska-daniel/riot-api-league",
"type": "library",
"description": "Riot League of Legends API wrapper for PHP8",
"keywords": ["riot", "league of legends", "api", "wrapper", "php8"],
"homepage": "https://github.com/dolejska-daniel/riot-api-league",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Daniel Dolejška",
"email": "dolejskad@gmail.com",
"role": "Developer"
}
],
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit --configuration phpunit.xml --coverage-text --coverage-html build/coverage"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/D0L1K/riot-api-base"
}
],
"require": {
"dolejska-daniel/riot-api-base": "1.0.0",
"php": ">=8.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"RiotAPI\\LeagueAPI\\": "src/LeagueAPI"
}
},
"minimum-stability": "stable"
}