forked from ivashkevitch/codeception-wiremock-extension
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
39 lines (39 loc) · 855 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
{
"keywords" : [
"wiremock",
"extension",
"module",
"codeception",
"mock",
"mock external services"
],
"authors" : [{
"name" : "Mariano Custiel",
"email" : "jmcustiel@gmail.com",
"homepage" : "https://github.com/mcustiel",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"Codeception\\" : "src"
}
},
"name" : "lamoda/codeception-wiremock-extension",
"type" : "library",
"description" : "Wiremock extension for Codeception",
"license" : "GPL-3.0+",
"require" : {
"php" : ">=8.0",
"codeception/codeception" : "^5.0.0",
"wiremock-php/wiremock-php" : "^2.35.1"
},
"require-dev" : {
"phing/phing" : "^2.17.4",
"squizlabs/php_codesniffer" : "^3.7.2",
"phpmd/phpmd" : "^2.13.0",
"pdepend/pdepend" : "^2.13.0",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-asserts": "^3.0"
}
}