-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.49 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "cache/encryption-cache",
"description": "Adds encryption support to your PSR-6 cache implementation",
"license": "MIT",
"type": "library",
"keywords": [
"cache",
"psr6",
"encrypted",
"encryption"
],
"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"
},
{
"name": "Daniel Bannert",
"email": "d.bannert@anolilab.de",
"homepage": "https://github.com/prisis"
}
],
"homepage": "https://www.php-cache.com/en/latest/",
"require": {
"php": "^8.2",
"cache/adapter-common": "^2.0.3 || ^3.0",
"cache/tag-interop": "^2.0",
"defuse/php-encryption": "^2.4",
"psr/cache": "^3.0"
},
"require-dev": {
"cache/array-adapter": "^3.0",
"cache/filesystem-adapter": "^3.0",
"cache/integration-tests": "^1.0@dev",
"phpunit/phpunit": "^11.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cache\\Encryption\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}