This repository has been archived by the owner on Jun 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "blood72/laravel-riot-api",
"type": "library",
"description": "Riot API wrapper for Laravel",
"license": "MIT",
"keywords": [
"Laravel",
"Riot API"
],
"authors": [
{
"name": "blood72",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/blood72/laravel-riot-api/issues",
"source": "https://github.com/blood72/laravel-riot-api"
},
"suggest": {
"dolejska-daniel/riot-api": "This is the parent project of this unofficial package."
},
"require": {
"php": ">=7.3",
"dolejska-daniel/riot-api": "^5.0.0",
"illuminate/cache": "^7.0|^8.0|^9.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^2.15",
"orchestra/testbench": "^6.0"
},
"autoload": {
"psr-4": {
"Blood72\\Riot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Blood72\\Riot\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Blood72\\Riot\\RiotAPIServiceProvider"
],
"aliases": {
"LeagueAPI": "Blood72\\Riot\\Facades\\LeagueAPI",
"DataDragonAPI": "Blood72\\Riot\\Facades\\DataDragonAPI"
}
}
},
"scripts": {
"format": "php-cs-fixer fix .",
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}