-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
41 lines (41 loc) · 864 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
41
{
"keywords" : [
"http",
"mock",
"http mock",
"codeception",
"extension",
"module",
"mock external services"
],
"authors" : [{
"name" : "Mariano Custiel",
"email" : "[email protected]",
"homepage" : "https://github.com/mcustiel",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"Codeception\\" : "src"
}
},
"name" : "mcustiel/codeception-http-mock",
"type" : "library",
"description" : "Extension for HTTP Mock.",
"license" : "GPL-3.0+",
"require" : {
"php" : ">=5.4",
"codeception/codeception" : "^2.1",
"internations/http-mock" : "^0.8",
"mcustiel/php-simple-di" : ">=1.2.0"
},
"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"
}
}