forked from mcustiel/codeception-wiremock-extension
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 880 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
37
38
39
40
{
"keywords" : [
"wiremock",
"extension",
"module",
"codeception",
"mock",
"mock external services"
],
"authors" : [{
"name" : "Mariano Custiel",
"email" : "[email protected]",
"homepage" : "https://github.com/mcustiel",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"Codeception\\" : "src"
}
},
"name" : "ivashkevitch/codeception-wiremock-extension",
"type" : "library",
"description" : "Wiremock extension for Codeception",
"license" : "GPL-3.0+",
"require" : {
"php" : ">=5.6",
"codeception/codeception" : "^2.0.0",
"wiremock-php/wiremock-php" : "^2.18"
},
"require-dev" : {
"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"
}
}