-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.92 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.92 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "kevinrob/guzzle-cache-middleware",
"type": "library",
"description": "A HTTP/1.1 Cache for Guzzle 6. It's a simple Middleware to be added in the HandlerStack. (RFC 7234)",
"keywords": ["guzzle", "guzzle6", "cache", "http", "http 1.1", "psr6", "psr7", "handler", "middleware", "cache-control", "rfc7234", "performance", "php", "promise", "expiration", "validation", "Etag", "flysystem"],
"homepage": "https://github.com/Kevinrob/guzzle-cache-middleware",
"license": "MIT",
"authors": [
{
"name": "Kevin Robatel",
"email": "kevinrob2@gmail.com",
"homepage": "https://github.com/Kevinrob"
}
],
"require": {
"php": ">=8.2",
"psr/clock": "^1.0 || ^2.0 || ^3.0",
"guzzlehttp/guzzle": "^7.9.2",
"guzzlehttp/promises": "^2.0.3",
"guzzlehttp/psr7": "^2.7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.21",
"league/flysystem": "^3.16",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"cache/array-adapter": "^1.0",
"illuminate/cache": "^10.0 || ^11.0 || ^12.0 || ^13.0",
"cache/simple-cache-bridge": "^1.1",
"symfony/phpunit-bridge": "^7.1.4",
"symfony/cache": "^6.4 || ^7.0 || ^8.0",
"symfony/clock": "^6.4 || ^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
"Kevinrob\\GuzzleCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kevinrob\\GuzzleCache\\Tests\\": "tests/"
}
},
"suggest": {
"guzzlehttp/guzzle": "For using this library. It was created for Guzzle6 (but you can use it with any PSR-7 HTTP client).",
"league/flysystem": "To be used with Kevinrob\\GuzzleCache\\Storage\\FlysystemStorage",
"psr/cache": "To be used with Kevinrob\\GuzzleCache\\Storage\\Psr6CacheStorage",
"psr/simple-cache": "To be used with Kevinrob\\GuzzleCache\\Storage\\Psr16CacheStorage",
"laravel/framework": "To be used with Kevinrob\\GuzzleCache\\Storage\\LaravelCacheStorage"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}