-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
32 lines (32 loc) · 946 Bytes
/
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
{
"name": "teaandcode/behat-guzzle-extension",
"type": "behat-extension",
"description": "Behat API extension using Guzzle Service Descriptions to functionally test API endpoints",
"keywords": ["web", "test", "behat", "curl", "guzzle", "api", "end-to-end"],
"homepage": "https://github.com/teaandcode/behat-guzzle-extension",
"license": "MIT",
"authors": [
{
"name": "Dave Nash",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "Behat\\GuzzleExtension": "src/" }
},
"require": {
"php": ">=5.3.3",
"behat/behat": "~3.0,>=3.0.5",
"guzzle/guzzle": ">=3.5",
"symfony/config": ">=2.2 <3.3"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"henrikbjorn/phpspec-code-coverage": "~0.2"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}