-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.66 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 1.66 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
54
55
56
57
58
59
60
61
62
63
{
"name": "cache/chain-adapter",
"description": "A PSR-6 and PSR-16 cache implementation using a chain of cache pools",
"license": "MIT",
"type": "library",
"keywords": [
"cache",
"psr-6",
"psr-16",
"chain",
"tag"
],
"authors": [
{
"name": "Aaron Scherer",
"email": "aequasi@gmail.com",
"homepage": "https://github.com/aequasi"
},
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com",
"homepage": "https://github.com/nyholm"
}
],
"homepage": "https://www.php-cache.com/en/latest/",
"require": {
"php": "^8.2",
"cache/adapter-common": "^2.0 || ^3.0",
"cache/simple-cache-bridge": "^2.0",
"cache/tag-interop": "^2.0",
"psr/cache": "^3.0",
"psr/log": "^3.0",
"psr/simple-cache": "^2.0 || ^3.0"
},
"require-dev": {
"cache/array-adapter": "^3.0",
"cache/filesystem-adapter": "^3.0",
"cache/integration-tests": "^1.0@dev",
"phpunit/phpunit": "^11.5"
},
"provide": {
"psr/cache-implementation": "3.0",
"psr/simple-cache-implementation": "2.0 || 3.0"
},
"suggest": {
"cache/void-adapter": "Provides a no-op final fallback for failed cache backends"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cache\\Adapter\\Chain\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}