-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.35 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.35 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
39
40
41
42
43
44
45
46
47
48
{
"keywords" : [
"http",
"mock",
"server",
"external",
"acceptance",
"tests",
"codeception",
"module",
"phiremock"
],
"authors" : [{
"name" : "Mariano Custiel",
"email" : "jmcustiel@gmail.com",
"homepage" : "https://github.com/mcustiel",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"Codeception\\Module\\" : "src/Module",
"Mcustiel\\Phiremock\\Codeception\\Util\\" : "src/Util"
}
},
"autoload-dev": {
"psr-4" : {
"Mcustiel\\Phiremock\\Codeception\\Module\\Tests\\Helpers\\": "tests/_helpers"
}
},
"name" : "mcustiel/phiremock-codeception-module",
"type" : "project",
"description" : "Codeception module for PhireMock. Allows to stub remote services for HTTP requests.",
"license" : "GPL-3.0-or-later",
"require" : {
"php" : "^8.2",
"mcustiel/phiremock-client": "^2.0",
"codeception/codeception" : "^5.0",
"codeception/lib-asserts": "^3.0"
},
"require-dev" : {
"mcustiel/phiremock-codeception-extension": "^4.0",
"mcustiel/phiremock-server": "^2.0",
"guzzlehttp/guzzle" : "^7.0",
"codeception/module-asserts": "^3.0"
},
"prefer-stable": true
}