-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 1.11 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
{
"name": "denniskoster/http-client",
"description": "Wrapper package to make http calls with any http plug compliant http package.",
"type": "library",
"require": {
"php": ">=7.2",
"ext-json": "*",
"php-http/httplug": "^2.0",
"php-http/discovery": "^1.6",
"guzzlehttp/psr7": "^1.5",
"psr/simple-cache": "^1.0",
"symfony/cache": "^5.0",
"myclabs/php-enum": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"mockery/mockery": "^1.2",
"swisnl/php-http-fixture-client": "^2.2"
},
"autoload": {
"psr-4": {
"DennisKoster\\HttpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DennisKoster\\HttpClient\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"suggest": {
"php-http/guzzle5-adapter": "Install this package if Guzzle 5 is available in the application.",
"php-http/guzzle6-adapter": "Install this package if Guzzle 6 is available in the application.",
"php-http/curl-client": "Install this package if Guzzle is not available in the application, but curl is."
},
"minimum-stability": "stable"
}