-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (43 loc) · 1.05 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
{
"name": "mattapril/eloquent-http",
"description": "Laravel Eloquent-like HTTP layer",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matt April",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "~6.0|~7.0",
"illuminate/auth": "^6|^7|^8",
"illuminate/container": "^6|^7|^8",
"illuminate/contracts": "^6|^7|^8",
"illuminate/pagination": "^6|^7|^8",
"illuminate/support": "^6|^7|^8",
"illuminate/validation": "^6|^7|^8",
"jenssegers/model": "^1.3",
"nesbot/carbon": "^2.0",
"symfony/routing": "^4.4|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"MattApril\\EloquentHttp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MattApril\\EloquentHttp\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
]
}
}
}