forked from csarrazi/CsaGuzzleBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.08 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
{
"name": "csa/guzzle-bundle",
"description": "A bundle integrating GuzzleHttp >= 4.0",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{ "name": "Charles Sarrazin", "email": "[email protected]" }
],
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "~4.0 | ~5.0",
"guzzlehttp/log-subscriber": "~1.0",
"symfony/framework-bundle": "~2.3|~3.0",
"twig/twig": "~1.12",
"symfony/expression-language": "~2.4|~3.0"
},
"suggest": {
"doctrine/cache": "Allows caching of responses",
"guzzlehttp/guzzle-services": "Allow web service description"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"doctrine/cache": "~1.1",
"symfony/web-profiler-bundle": "~2.3",
"guzzlehttp/guzzle-services": "~0.3",
"symfony/phpunit-bridge": "~2.7|~3.0"
},
"autoload": {
"psr-4": { "Csa\\Bundle\\GuzzleBundle\\": "src" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
}
}