forked from creolink/behat-wiremock-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.16 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
{
"name": "vpx/behat-wiremock-extension",
"type": "behat-extension",
"description": "This Behat extension provides support for using Wiremock to mock external API calls",
"keywords": ["behat", "mock", "wiremock"],
"support": {
"issues": "https://github.com/vpx/behat-wiremock-extension/issues",
"source": "https://github.com/vpx/behat-wiremock-extension"
},
"require": {
"php": ">=7.0.0",
"behat/behat": "~3.2",
"symfony/dependency-injection": "~2.6|~3.0|~4.0",
"symfony/config": "~2.8|~3.0|~4.0",
"wiremock-php/wiremock-php": "^2.27"
},
"require-dev": {
"behat/mink-extension": "^2.1",
"behat/mink-goutte-driver": "^1.2",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5.7"
},
"license": "MIT",
"authors": [
{
"name": "Vitalii Piskovyi",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"VPX\\WiremockExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\VPX\\WiremockExtension\\": "tests/"
}
}
}