-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 826 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 826 Bytes
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
{
"name": "creativesoftworks/behat-wiremock-context-extension",
"description": "A Behat Extension that makes use of Wiremock as a test double for API calls",
"type": "library",
"homepage": "https://github.com/creativesoftworks/BehatWiremockContextExtension",
"license": "MIT",
"authors": [
{
"name": "Ricardo Oliveira",
"email": "ricardo.oliveira@creative-softworks.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3.0",
"behat/behat": "~2.4",
"guzzle/guzzle": "3.*"
},
"require-dev": {
"phpspec/phpspec": "2.*"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"CreativeSoftworks\\BehatWiremockContextExtension": "src/"
}
}
}