forked from BedrockStreaming/GuzzleHttpBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 906 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 906 Bytes
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
{
"name": "m6web/guzzle-http-bundle",
"type" : "symfony-bundle",
"description": "Symfony2 bundle on top of guzzle 6",
"keywords": ["bundle", "http", "client", "HTTP client"],
"license" : "MIT",
"authors": [
{
"name": "M6Web",
"email" : "opensource@m6web.fr",
"homepage": "http://tech.m6web.fr/"
}
],
"require": {
"php": ">=5.5",
"ext-curl": "*",
"guzzlehttp/guzzle": "~6.0",
"symfony/symfony": "~2.6||~3.0"
},
"require-dev": {
"atoum/atoum": "~2.1",
"atoum/stubs": "*",
"m6web/coke": "~1.2",
"m6web/symfony2-coding-standard": "~2.0",
"symfony/dependency-injection": "~2.3||~3.0",
"symfony/event-dispatcher": "~2.3||~3.0",
"symfony/config" : "~2.3||~3.0",
"symfony/yaml" : "~2.3||~3.0"
},
"autoload": {
"psr-4": {"M6Web\\Bundle\\GuzzleHttpBundle\\": "src/"}
},
"config": {
"bin-dir": "bin/"
}
}