-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.35 KB
/
Copy pathcomposer.json
File metadata and controls
55 lines (55 loc) · 1.35 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
{
"name": "cache/session-handler",
"description": "Locking PHP session handlers for PSR-6 and PSR-16 caches",
"license": "MIT",
"type": "library",
"keywords": [
"cache",
"locking",
"psr-16",
"psr-6",
"session handler"
],
"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",
"psr/cache": "^3.0",
"psr/simple-cache": "^2.0 || ^3.0"
},
"require-dev": {
"cache/array-adapter": "^2.0 || ^3.0",
"phpunit/phpunit": "^11.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cache\\SessionHandler\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}