-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
53 lines (53 loc) · 1.78 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
46
47
48
49
50
51
52
53
{
"name": "php-http/client-integration-tests",
"description": "HTTP Client integration tests",
"license": "MIT",
"keywords": ["http", "client", "integration", "tests"],
"homepage": "http://httplug.io",
"authors": [
{
"name": "Eric GELOEN",
"email": "[email protected]"
},
{
"name": "Márk Sági-Kazár",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"phpunit/phpunit": "^9.6.17",
"php-http/message": "^1.0 || ^2.0",
"php-http/message-factory": "^1.0",
"guzzlehttp/psr7": "^1.9 || ^2.0",
"th3n3rd/cartesian-product": "^0.3"
},
"suggest": {
"php-http/httplug": "To test async client"
},
"require-dev": {
"php-http/httplug": "^2.0",
"nyholm/psr7": "^1.8@dev"
},
"autoload": {
"psr-4": {
"Http\\Client\\Tests\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Http\\Client\\Curl\\Tests\\": "vendor/php-http/curl-client/tests/",
"Http\\Client\\Socket\\Tests\\": "vendor/php-http/socket-client/tests/",
"Http\\Adapter\\Guzzle5\\Tests\\": "vendor/php-http/guzzle5-adapter/tests/",
"Http\\Adapter\\Guzzle6\\Tests\\": "vendor/php-http/guzzle6-adapter/tests/",
"Http\\Adapter\\Buzz\\Tests\\": "vendor/php-http/buzz-adapter/tests/",
"Http\\Adapter\\React\\Tests\\": "vendor/php-http/react-adapter/tests/",
"Http\\Adapter\\Cake\\Tests\\": "vendor/php-http/cachephp-adapter/tests/",
"Http\\Adapter\\Zend\\Tests\\": "vendor/php-http/zend-adapter/tests/"
}
},
"bin": [
"bin/http_test_server"
],
"minimum-stability": "dev"
}