forked from ubirak/rest-api-behat-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.58 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
52
53
{
"name": "ubirak/rest-api-behat-extension",
"replace": {
"rezzza/json-api-behat-extension": "self.version",
"rezzza/rest-api-behat-extension": "self.version"
},
"type": "behat-extension",
"description": "Rest Api Extension for Behat",
"keywords": ["api", "json", "rest", "test"],
"license": "MIT",
"homepage": "https://github.com/ubirak/rest-api-behat-extension",
"authors": [
{
"name": "Community contributors",
"homepage": "https://github.com/ubirak/rest-api-behat-extension/contributors"
}
],
"autoload": {
"psr-4": { "Ubirak\\RestApiBehatExtension\\": "src/" }
},
"minimum-stability": "dev",
"require": {
"php": ">=5.6.0",
"behat/behat": "~3.0",
"atoum/atoum": "~1.0|~2.0|~3.0|3.0.x-dev",
"symfony/property-access": "~2.5|~3.0|~4.0",
"justinrainbow/json-schema": ">=3.0 <6.0",
"psr/http-message": "^1.0",
"php-http/discovery": "^1.0",
"php-http/client-common": "^1.2",
"php-http/message": "^1.3",
"tolerance/tolerance": "^0.4",
"mtdowling/jmespath.php": "^2.3"
},
"require-dev": {
"silex/silex": "~2.0",
"symfony/process": "~2.1|~3.0",
"guzzlehttp/psr7": "^1.3",
"php-http/mock-client": "^1.0",
"php-http/guzzle6-adapter": "^1.1.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"extra": {
"branch-alias": {
"dev-master": "6.x-dev"
}
}
}