-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (44 loc) · 918 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
38
39
40
41
42
43
44
45
{
"name": "3brettb/fantasynfl",
"description": "Laravel NFL Fantasy Football Resource",
"license": "MIT",
"homepage": "https://github.com/3brettb/fantasynfl",
"support": {
"issues": "https://github.com/3brettb/fantasynfl/issues",
"source": "https://github.com/3brettb/fantasynfl"
},
"authors": [
{
"name": "Brett Brist",
"email": "3brettb@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"guzzlehttp/guzzle": "6.3.0",
"laravel/framework": "5.5.*"
},
"require-dev": {
"phpunit/phpunit": "6.4.4",
"symfony/debug": "v3.4.1"
},
"autoload": {
"psr-4": {
"Fantasy\\NFL\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Fantasy\\NFL\\FantasyNFLServiceProvider"
],
"aliases": {
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}