forked from ludofleury/GuzzleBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.36 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
{
"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]"
},
{
"name": "All contributors",
"homepage": "https://github.com/ludofleury/GuzzleBundle/graphs/contributors"
}
],
"require": {
"php": ">=8.1",
"symfony/web-profiler-bundle": "^5.4|^6.4|^7.0",
"symfony/http-foundation": "^5.4|^6.4|^7.0",
"symfony/http-kernel": "^5.4|^6.4|^7.0",
"symfony/config": "^5.4|^6.4|^7.0",
"symfony/dependency-injection": "^5.4|^6.4|^7.0"
},
"require-dev": {
"guzzle/guzzle": "3.*",
"guzzlehttp/guzzle": "~5.0",
"phpunit/phpunit": "~9.0"
},
"suggest": {
"guzzle/guzzle": "to use the Guzzle 3 profiler",
"guzzlehttp/guzzle": "to use the Guzzle 5 profiler"
},
"autoload": {
"psr-0": { "Playbloom\\Bundle\\GuzzleBundle": "" }
},
"target-dir": "Playbloom/Bundle/GuzzleBundle",
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}