-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.07 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
{
"name": "matthillman/swgoh-help",
"description": "Laravel wrapper around an API to swogh.help.",
"keywords": ["swogh", "swgoh.help", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Matthew Hillman",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"fabpot/goutte": "^4.0.1",
"guzzlehttp/guzzle": "~6.5.5|~7.0.1|~7.3.0",
"illuminate/support": "~5.4|~6.0|~7.0|~8.0",
"myclabs/php-enum": "^1.6",
"salsify/json-streaming-parser": "^7.0|^8.2"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~4.0|~5.0|~8.0|~9.0"
},
"autoload": {
"psr-4": {
"SwgohHelp\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"SwgohHelp\\SwgohHelpServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}