-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.29 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.29 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
49
50
51
52
{
"keywords": [
"http",
"mock",
"server",
"external",
"acceptance",
"tests",
"codeception",
"extension",
"phiremock"
],
"authors": [
{
"name": "Mariano Custiel",
"email": "jmcustiel@gmail.com",
"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": "^8.2",
"codeception/codeception": "^5.0",
"symfony/process": ">=6.0.0 <9.0.0"
},
"require-dev": {
"mcustiel/phiremock-server": "^2.0",
"codeception/module-rest": "^3.0",
"codeception/module-phpbrowser": "^3.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
}