forked from mcustiel/phiremock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.5 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
{
"keywords" : [
"http",
"mock",
"server",
"external",
"acceptance",
"tests"
],
"authors" : [
{
"name" : "Mariano Custiel",
"email" : "jmcustiel@gmail.com",
"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+",
"require" : {
"php" : ">=5.5",
"react/http" : "dev-master",
"mcustiel/php-simple-request" : "^3.1",
"symfony/cache": "^3.1",
"mcustiel/power-route" : "^2.2.0",
"mcustiel/php-simple-di" : "^1.2.1",
"guzzlehttp/guzzle" : "^6.0",
"monolog/monolog" : "^1.17.2"
},
"require-dev" : {
"codeception/codeception" : "^2.1",
"friendsofphp/php-cs-fixer" : "^1.11.1",
"phing/phing" : "^2.12.0",
"squizlabs/php_codesniffer" : "^2.3.4",
"phpmd/phpmd" : "^2.3.2",
"sebastian/phpcpd" : "^2.0.2",
"pdepend/pdepend" : "^2.0.6",
"phploc/phploc" : "^2.1.1",
"phpdocumentor/phpdocumentor" : "^2.8.5"
},
"suggest" : {
"ext-pcntl" : "Allows phiremock to handle system signals"
},
"bin" : [
"bin/phiremock"
],
"minimum-stability" : "dev",
"prefer-stable" : true
}