forked from php-http/client-integration-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.81 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
54
55
56
{
"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.1 || ^8.0",
"phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.11",
"php-http/message": "^1.0 || ^2.0",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"th3n3rd/cartesian-product": "^0.3"
},
"suggest": {
"php-http/httplug": "To test async client"
},
"require-dev": {
"php-http/httplug": "^2.0"
},
"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"
],
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"minimum-stability": "dev"
}