-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
63 lines (47 loc) · 1.39 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
54
55
56
57
58
59
60
61
62
63
{
"name": "taluu/behapi",
"description": "Test your remote api locally through Behat",
"keywords": ["behat", "contexts", "extension", "api"],
"license": "MIT",
"authors": [
{
"name": "Baptiste Clavié",
"email": "[email protected]",
"role": "Lead maintainer"
}
],
"autoload": {
"psr-4": {
"Behapi\\": "src/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"beberlei/assert": "^3.2",
"symfony/property-access": "^4.4 || ^5.4 || ^6.0",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-message": "^1.0",
"psr/http-message-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"php-http/discovery": "^1.11",
"php-http/client-common": "^2.2"
},
"suggest": {
"symfony/var-dumper": "In order to use the VarDumper debug dumper"
},
"conflict": {
"php-http/discovery": "< 1.11",
"behat/behat": "< 3.7"
},
"prefer-stable": true,
"minimum-stability": "dev",
"require-dev": {
"behat/behat": "^3.5",
"nyholm/psr7": "^1.0",
"php-http/message": "^1.0",
"symfony/http-client": "^4.4 || ^5.4 || ^6.0",
"symfony/var-dumper": "^4.4 || ^5.4 || ^6.0"
}
}