forked from 8p/EightPointsGuzzleBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.55 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
{
"name": "eightpoints/guzzle-bundle",
"type": "symfony-bundle",
"description": "Integrates Guzzle 6.x, a PHP HTTP Client, into Symfony 2/3/4. 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": "[email protected]",
"homepage": "https://github.com/florianpreusner"
},
{
"name": "Community",
"homepage": "https://github.com/8p/GuzzleBundle/contributors"
}
],
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "~6.0|^7.5",
"symfony/framework-bundle": "~4.0|~5.0|~6.0",
"symfony/expression-language": "~4.0|~5.0|~6.0",
"symfony/stopwatch": "~4.0|~5.0|~6.0",
"psr/log": "~1.0|~2.0|~3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~4.0|~5.0|~6.0",
"symfony/twig-bundle": "~4.0|~5.0|~6.0",
"symfony/var-dumper": "~4.0|~5.0|~6.0",
"symfony/yaml": "~4.0|~5.0|~6.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"
}
}
}