-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
68 lines (68 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "swisnl/php-http-fixture-client",
"description": "Fixture client for PHP-HTTP",
"type": "library",
"keywords": [
"swisnl",
"swis",
"php-http",
"fixture",
"client",
"psr-7",
"psr-18",
"testing"
],
"homepage": "https://github.com/swisnl/php-http-fixture-client",
"license": "MIT",
"authors": [
{
"name": "Jasper Zonneveld",
"email": "[email protected]",
"homepage": "https://github.com/JaZo",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"php-http/discovery": "^1.14",
"php-http/mock-client": "^1.6",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0|^2.0",
"symfony/string": "^5.4|^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^2.1",
"phpunit/phpunit": "^9.5"
},
"provide": {
"php-http/async-client-implementation": "1.0",
"php-http/client-implementation": "1.0",
"psr/http-client-implementation": "1.0"
},
"suggest": {
"ext-json": "Required to mock response headers."
},
"autoload": {
"psr-4": {
"Swis\\Http\\Fixture\\": "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Swis\\Http\\Fixture\\Tests\\" : "tests/"
}
},
"scripts": {
"test": "phpunit",
"check-style": "php-cs-fixer fix --dry-run -v",
"fix-style": "php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}