-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
43 lines (43 loc) · 1.14 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
{
"name": "simivar/riot-php",
"description": "Dependency-injection based wrapper around Riot Games APIs.",
"keywords": [
"riot", "riot games", "lol", "league of legends", "valorant", "teamfight tactics", "tft",
"legends of runeterra", "lor", "psr-17", "psr-17", "httplug"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "simivar",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"ext-json": "*",
"ramsey/collection": "^1.1",
"webmozart/assert": "^1.9",
"myclabs/php-enum": "^1.7"
},
"autoload": {
"psr-4": {
"Riot\\": "src/Riot"
}
},
"autoload-dev": {
"psr-4": {
"Riot\\Tests\\": "tests"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^9.4",
"symfony/http-client": "^5.1",
"nyholm/psr7": "^1.3",
"phpstan/phpstan-phpunit": "^0.12.16"
}
}