-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
34 lines (33 loc) · 954 Bytes
/
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
{
"name": "playbloom/guzzle-bundle",
"description": "Provide Symfony2 web profiler for Guzzle",
"keywords": ["guzzle", "Symfony2", "profiler"],
"homepage": "https://github.com/ludofleury/GuzzleBundle",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Ludovic Fleury",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"guzzle/guzzle": "3.*",
"symfony/web-profiler-bundle": "~2.1",
"symfony/http-foundation": "~2.1",
"symfony/http-kernel": "~2.1",
"symfony/config": "~2.1",
"symfony/dependency-injection": "~2.1"
},
"autoload": {
"psr-0": { "Playbloom\\Bundle\\GuzzleBundle": "" }
},
"target-dir": "Playbloom/Bundle/GuzzleBundle",
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}