-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
51 lines (51 loc) · 1.26 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
{
"name": "php-http/mock-client",
"description": "Mock HTTP client",
"keywords": [
"http",
"client",
"psr7",
"mock"
],
"homepage": "http://httplug.io",
"license": "MIT",
"authors": [
{
"name": "David de Boer",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.16",
"php-http/httplug": "^2.0",
"psr/http-client": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/polyfill-php80": "^1.17"
},
"provide": {
"php-http/async-client-implementation": "1.0",
"php-http/client-implementation": "1.0",
"psr/http-client-implementation": "1.0"
},
"require-dev": {
"phpspec/phpspec": "^5.1 || ^6.1 || ^7.3"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Http\\Mock\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpspec run",
"test-ci": "vendor/bin/phpspec run -c phpspec.ci.yml"
}
}