forked from julienfalque/http-mock-guzzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 877 Bytes
/
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
{
"name": "jfalque/http-mock-guzzle",
"description": "Integrates jfalque/http-mock into Guzzle",
"keywords": ["HTTP", "fixtures", "mock", "test", "guzzle"],
"type": "library",
"license": "MIT",
"abandoned": true,
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"jfalque/http-mock": "^1.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^8.0",
"symfony/phpunit-bridge": "^3.2"
},
"autoload": {
"psr-4": {
"Jfalque\\HttpMock\\Guzzle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jfalque\\HttpMock\\Guzzle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"config": {
"sort-packages": true
}
}