-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
40 lines (40 loc) · 1.04 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
{
"name": "m6web/guzzle-http-bundle",
"type" : "symfony-bundle",
"description": "Symfony bundle on top of Guzzle",
"keywords": ["bundle", "http", "client", "HTTP client"],
"license" : "MIT",
"authors": [
{
"name": "M6Web",
"email" : "[email protected]",
"homepage": "https://tech.bedrockstreaming.com/"
}
],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7",
"symfony/config" : "^5.4||^6.0",
"symfony/dependency-injection": "^5.4||^6.0",
"symfony/event-dispatcher": "^5.4||^6.0",
"symfony/http-kernel": "^5.4||^6.0",
"symfony/yaml" : "^5.4||^6.0"
},
"require-dev": {
"atoum/atoum": "4.2.0",
"atoum/stubs": "*",
"m6web/php-cs-fixer-config": "3.2.0",
"friendsofphp/php-cs-fixer": "3.35.1",
"guzzlehttp/promises": "^2",
"phpstan/phpstan": "1.10.38",
"phpstan/phpstan-symfony": "1.3.4",
"rector/rector": "0.18.5"
},
"autoload": {
"psr-4": {"M6Web\\Bundle\\GuzzleHttpBundle\\": "src/"}
},
"config": {
"bin-dir": "bin/"
}
}