-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 1.06 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
{
"name": "ivan770/laravel-httpclient",
"description": "Symfony HttpClient <3 Laravel",
"type": "library",
"license": "MIT",
"require": {
"symfony/http-client": "^5.2",
"symfony/browser-kit": "^5.2",
"illuminate/support": "^8.0"
},
"require-dev": {
"illuminate/container": "^8.0",
"illuminate/cache": "^8.0",
"illuminate/pipeline": "^8.0"
},
"suggest": {
"illuminate/pipeline": "Allows to send response data through pipelines",
"illuminate/container": "Required to use pipelines",
"illuminate/cache": "Required to use response caching",
"illuminate/console": "Required to create requests with artisan"
},
"autoload": {
"psr-4": {
"Ivan770\\HttpClient\\": "src/"
}
},
"extra": {
"laravel": {
"aliases": {
"HttpClient": "Ivan770\\HttpClient\\Facades\\HttpClient"
},
"providers": [
"Ivan770\\HttpClient\\ServiceProvider"
]
}
}
}