This repository has been archived by the owner on Jul 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
54 lines (54 loc) · 1.7 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
50
51
52
53
54
{
"name": "csa/guzzle-bundle",
"type": "symfony-bundle",
"description": "A bundle integrating GuzzleHttp >= 4.0",
"license": "Apache-2.0",
"authors": [
{
"name": "Charles Sarrazin",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"csa/guzzle-cache-middleware": "^1.0.0",
"csa/guzzle-history-middleware": "^1.0.0",
"csa/guzzle-stopwatch-middleware": "^1.0.0",
"guzzlehttp/guzzle": "^6.1 || ^7.0",
"symfony/dependency-injection": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"symfony/filesystem": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"twig/twig": "^2.10 || ^3.0"
},
"require-dev": {
"namshi/cuzzle": "^2.0",
"phpunit/phpunit": "^7.0",
"symfony/phpunit-bridge": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"symfony/web-profiler-bundle": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"symfony/yaml": "^2.8 || ^3.0 || ^4.0 || ^5.0"
},
"suggest": {
"doctrine/cache": "Allows caching of responses",
"namshi/cuzzle": "Output command to repeat request in command line",
"psr/cache": "Allows caching of responses",
"tolerance/tolerance": "Allows retrying failed requests"
},
"extra": {
"branch-alias": {
"dev-2.x": "2.3-dev",
"dev-master": "4.0-dev"
}
},
"autoload": {
"psr-4": {
"Csa\\Bundle\\GuzzleBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Csa\\Bundle\\GuzzleBundle\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}