forked from ddeboer/GuzzleBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (33 loc) · 1.01 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
{
"name": "ddeboer/guzzle-bundle",
"type": "symfony-bundle",
"description": "This Bundle provide integration for guzzle http client to access RESTful API's with Symfony2",
"keywords": ["http", "rest", "web service", "curl", "client", "HTTP client", "guzzle", "api"],
"homepage": "https://github.com/ddeboer/GuzzleBundle",
"license": "MIT",
"authors": [
{
"name": "David de Boer"
},
{
"name": "Gordon Franke",
"email": "info@nevalon.de"
},
{
"name": "Michael Dowling"
},
{
"name": "Community",
"homepage": "https://github.com/ddeboer/GuzzleBundle/graphs/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/symfony": ">=2.0,<2.2",
"guzzle/guzzle": "*"
},
"autoload": {
"psr-0": { "Ddeboer\\GuzzleBundle": "" }
},
"target-dir": "Ddeboer/GuzzleBundle"
}