forked from csarrazi/guzzle-cache-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.13 KB
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 1.13 KB
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
{
"name": "csa/guzzle-cache-middleware",
"description": "A Cache middleware for GuzzleHttp >= 6.0",
"license": "Apache-2.0",
"type": "library",
"authors": [
{ "name": "Charles Sarrazin", "email": "charles@sarraz.in" }
],
"require": {
"php": "^8.4",
"guzzlehttp/guzzle": "^6.1|^7.0",
"symfony/filesystem": "^7.0|^8.0"
},
"suggest": {
"doctrine/cache": "Allows caching of responses",
"psr/cache": "Allows caching of responses",
"namshi/cuzzle": "Output command to repeat request in command line",
"tolerance/tolerance": "Allows retrying failed requests"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"doctrine/cache": "^1.1",
"psr/cache": "^1.0",
"symfony/phpunit-bridge": "^7.0|^8.0"
},
"autoload": {
"psr-4": { "Csa\\GuzzleHttp\\Middleware\\Cache\\": "src" }
},
"autoload-dev": {
"psr-4": { "Csa\\Tests\\GuzzleHttp\\Middleware\\Cache\\": "tests" }
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}