forked from mcustiel/phiremock-codeception-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"keywords" : [
"http",
"mock",
"server",
"external",
"acceptance",
"tests",
"codeception",
"extension",
"phiremock"
],
"authors" : [{
"name" : "Mariano Custiel",
"email" : "jmcustiel@gmail.com",
"homepage" : "https://github.com/mcustiel",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"Codeception\\" : "src"
}
},
"name" : "mcustiel/phiremock-codeception-extension",
"type" : "project",
"description" : "Codeception extension for PhireMock. Allows to stub remote services for HTTP requests.",
"license" : "GPL-3.0+",
"require" : {
"php" : ">=5.6",
"mcustiel/phiremock": "^1.3",
"codeception/codeception" : "^2.0",
"symfony/process": "^3.1|^2.7.15"
},
"suggest" : {
"ext-pcntl" : "Allows phiremock-codeception-extension to send system signals to phiremock process"
}
}