-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
42 lines (42 loc) · 1.24 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
{
"name": "zalas/behat-rest-extension",
"type": "behat-extension",
"description": "Rest extension for Behat",
"keywords": ["rest", "test"],
"license": "MIT",
"authors": [
{
"name": "Jakub Zalas",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"behat/behat": "^3.5",
"php-http/client-common": "^2.1",
"php-http/message": "^1.8",
"symfony/dependency-injection": "^4.4 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"php-http/guzzle6-adapter": "^2.0.1",
"symfony/process": "^4.4 || ^5.0",
"symfony/filesystem": "^4.4 || ^5.0",
"php-http/discovery": "^1.7",
"phpspec/prophecy": "^1.10.0",
"guzzlehttp/guzzle": "^6.3"
},
"suggest": {
"php-http/guzzle6-adapter": "For Guzzle6 support",
"php-http/discovery": "For http client auto discovery",
"puli/composer-plugin": "For http client auto discovery"
},
"autoload": {
"psr-4": { "Zalas\\Behat\\RestExtension\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Zalas\\Behat\\RestExtension\\": "tests/" }
},
"prefer-stable": true,
"minimum-stability": "beta"
}