-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
57 lines (57 loc) · 1.65 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
{
"name": "eightpoints/guzzle-bundle",
"type": "symfony-bundle",
"description": "Integrates Guzzle 6.x, a PHP HTTP Client, into Symfony. Comes with easy and powerful configuration options and optional plugins.",
"keywords": [
"bundle",
"guzzle",
"symfony",
"rest",
"web service",
"curl",
"client",
"HTTP client"
],
"homepage": "https://github.com/8p/GuzzleBundle",
"license": "MIT",
"authors": [
{
"name": "Florian Preusner",
"email": "florian.preusner@8points.de",
"homepage": "https://github.com/florianpreusner"
},
{
"name": "Community",
"homepage": "https://github.com/8p/GuzzleBundle/contributors"
}
],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.5.8|^7.4.5",
"guzzlehttp/promises": "^1.5.3|^2.0",
"guzzlehttp/psr7": "^1.9.1|^2.5",
"symfony/framework-bundle": "~5.0|~6.0|~7.0",
"symfony/expression-language": "~5.0|~6.0|~7.0",
"symfony/stopwatch": "~5.0|~6.0|~7.0",
"psr/log": "~1.0|~2.0|~3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~5.0|~6.0|~7.0",
"symfony/twig-bundle": "~5.0|~6.0|~7.0",
"symfony/var-dumper": "~5.0|~6.0|~7.0",
"symfony/yaml": "~5.0|~6.0|~7.0"
},
"suggest": {
"namshi/cuzzle": "Outputs Curl command on profiler's page for debugging purposes"
},
"autoload": {
"psr-4": {
"EightPoints\\Bundle\\GuzzleBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"EightPoints\\Bundle\\GuzzleBundle\\Tests\\": "tests"
}
}
}