forked from mcustiel/phiremock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.14 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
{
"keywords" : [
"http",
"mock",
"server",
"external",
"acceptance",
"tests"
],
"authors" : [
{
"name" : "Mariano Custiel",
"email" : "[email protected]",
"homepage" : "https://github.com/mcustiel",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"Mcustiel\\Phiremock\\" : "src"
}
},
"name" : "mcustiel/phiremock",
"type" : "project",
"description" : "A mocker for HTTP and REST services",
"license" : "GPL-3.0-or-later",
"require" : {
"php" : ">=5.6",
"react/http" : "~0.7.0 || ~0.8.0",
"mcustiel/php-simple-request" : "^3.1",
"symfony/cache": ">=3.1 <5.0",
"mcustiel/power-route" : "^3.0.0",
"mcustiel/php-simple-di" : "^1.2.1",
"guzzlehttp/guzzle" : "^6.0",
"monolog/monolog" : "^1.17.2||^2.0"
},
"require-dev" : {
"codeception/codeception" : "^2.2.10"
},
"suggest" : {
"ext-pcntl" : "Allows phiremock to handle system signals"
},
"bin" : [
"bin/phiremock"
]
}