forked from misd-service-development/guzzle-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.51 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
{
"name": "misd/guzzle-bundle",
"type": "symfony-bundle",
"description": "Integrates Guzzle into your Symfony2 application",
"keywords": ["guzzle", "bundle", "http", "http client", "rest", "client", "web service", "curl", "api"],
"homepage": "https://github.com/misd-service-development/guzzle-bundle",
"license": "MIT",
"authors": [
{
"name": "Chris Wilkinson",
"email": "chris.wilkinson@admin.cam.ac.uk"
}
],
"support": {
"issues": "https://github.com/misd-service-development/guzzle-bundle/issues"
},
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": ">=2.3.0",
"guzzle/guzzle": "~3.0"
},
"suggest": {
"jms/serializer-bundle": "Serialize/deserialize objects to/from XML, JSON and YAML",
"sensio/framework-extra-bundle": "Provides a parameter converter",
"symfony/monolog-bundle": "Log requests"
},
"conflict": {
"jms/serializer-bundle": "<0.11-dev",
"sensio/framework-extra-bundle": ">=4.0-dev"
},
"require-dev": {
"doctrine/cache": "~1.0",
"phpunit/phpunit": "~4.3",
"sensio/framework-extra-bundle": "^3.0.2",
"symfony/yaml": "~2.2|~3.0",
"symfony/monolog-bundle": "^2.8",
"jms/serializer-bundle": "~0.11"
},
"autoload": {
"psr-4": {
"Misd\\GuzzleBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}