-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
35 lines (35 loc) · 883 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
{
"name": "dolejska-daniel/riot-api-base",
"type": "library",
"description": "Generic base for simple Riot API PHP wrapper implementation.",
"keywords": ["riot", "api", "wrapper", "base", "php7"],
"homepage": "https://github.com/dolejska-daniel/riot-api-base",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Daniel Dolejška",
"email": "[email protected]",
"role": "Developer"
}
],
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit tests -v --configuration phpunit.xml --coverage-text --coverage-html build/coverage"
},
"require": {
"guzzlehttp/guzzle": "^7",
"symfony/cache": "^6",
"psr/cache": "^3",
"php": ">=8.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"RiotAPI\\Base\\": "src/Base",
"RiotAPI\\Tests\\": "src/Tests"
}
},
"minimum-stability": "stable"
}