forked from junlarsen/RiotQuest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 816 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
{
"name": "supergrecko/riot-quest",
"description": "Riot Games API Framework",
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"RiotQuest\\": "src/RiotQuest/"
}
},
"require": {
"php": "^7.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3.3",
"symfony/dotenv": "^4.3.4",
"nesbot/carbon": "^2.25.0",
"psr/cache": "1.0.1",
"symfony/cache": "^4.3.4",
"league/flysystem": "^1.0",
"illuminate/support": "^5.8",
"psr/log": "1.1"
},
"require-dev": {
"phpunit/phpunit": "8.4.0",
"symfony/var-dumper": "4.3.4",
"jenssegers/blade": "1.2.2"
},
"prefer-stable": true,
"minimum-stability": "RC",
"extra": {
"laravel": {
"providers": [
"RiotQuest\\ServiceProviders\\LeagueServiceProvider"
]
}
}
}