-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.14 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.14 KB
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
{
"name": "php-http/guzzle7-adapter",
"description": "Guzzle 7 HTTP Adapter",
"license": "MIT",
"keywords": ["guzzle", "http"],
"homepage": "http://httplug.io",
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
}
],
"require": {
"php": "^7.3 | ^8.0",
"php-http/httplug": "^2.4",
"psr/http-client": "^1.0.3",
"guzzlehttp/guzzle": "^7.10"
},
"require-dev": {
"phpunit/phpunit": "^9.6.31 || ^10.0 || ^11.0 || ^12.0",
"php-http/client-integration-tests": "^3.0 || ^4.0",
"phpspec/prophecy-phpunit": "^2.4",
"php-http/message-factory": "^1.1"
},
"provide": {
"php-http/client-implementation": "1.0",
"php-http/async-client-implementation": "1.0",
"psr/http-client-implementation": "1.0"
},
"autoload": {
"psr-4": {
"Http\\Adapter\\Guzzle7\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Http\\Adapter\\Guzzle7\\Tests\\": "tests/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit"
}
}