forked from mcustiel/phiremock-codeception-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.57 KB
/
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
42
43
44
45
46
47
48
49
50
51
{
"keywords" : [
"http",
"mock",
"server",
"external",
"acceptance",
"tests",
"codeception",
"extension",
"phiremock"
],
"authors" : [{
"name" : "Mariano Custiel",
"email" : "[email protected]",
"homepage" : "https://github.com/mcustiel",
"role" : "Administrator"
}
],
"autoload" : {
"psr-4" : {
"Codeception\\Extension\\" : "src/Extension",
"Mcustiel\\Phiremock\\Codeception\\Extension\\": "src/PhiremockExtension"
}
},
"autoload-dev": {
"psr-4" : {
"Mcustiel\\Phiremock\\Codeception\\Module\\Tests\\Helpers\\": "tests/_helpers"
}
},
"name" : "mcustiel/phiremock-codeception-extension",
"type" : "project",
"description" : "Codeception extension for Phiremock. Allows to stub remote services for HTTP requests.",
"license" : "GPL-3.0-or-later",
"require" : {
"php" : "^7.2|^8.0",
"codeception/codeception" : ">=2.2 <5.0",
"symfony/process": ">=3.0.0 <6.0.0"
},
"require-dev": {
"mcustiel/phiremock-server": "^1.0",
"codeception/module-rest": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"guzzlehttp/guzzle" : "^7.0"
},
"suggest": {
"mcustiel/phiremock-server": "As a dev-requirement. Allows the extension to start phiremock automatically from vendor/bin",
"guzzlehttp/guzzle" : "Version 6 to execute phiremock-server as default"
},
"prefer-stable": true
}