forked from csarrazi/CsaGuzzleBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.19 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"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]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/valkars/guzzle-cache-middleware.git"
},
{
"type": "git",
"url": "https://github.com/valkars/guzzle-history-middleware.git"
},
{
"type": "git",
"url": "https://github.com/valkars/guzzle-stopwatch-middleware.git"
},
{
"type": "git",
"url": "https://github.com/valkars/cuzzle.git"
}
],
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-libxml": "*",
"csa/guzzle-cache-middleware": "dev-master",
"csa/guzzle-history-middleware": "dev-master",
"csa/guzzle-stopwatch-middleware": "dev-master",
"guzzlehttp/guzzle": "^6.1 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/filesystem": "^6.0 || ^7.0",
"symfony/framework-bundle": "^6.0 || ^7.0",
"twig/twig": "^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"namshi/cuzzle": "dev-master",
"phpunit/phpunit": "^10.0",
"symfony/phpunit-bridge": "^6.0 || ^7.0",
"symfony/web-profiler-bundle": "^6.0 || ^7.0",
"symfony/yaml": "^6.0 || ^7.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": "stable"
}