-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.07 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"name": "ephpm/session-handler",
"description": "PHP session save handler that stores session payloads in ePHPm's in-process KV store via the ephpm_kv_* SAPI functions — drop-in replacement for the Files / Memcached / Redis session handlers, no daemon, no socket.",
"type": "library",
"license": "MIT",
"keywords": ["ephpm", "session", "session-handler", "wordpress", "kv", "sapi"],
"homepage": "https://ephpm.dev",
"support": {
"issues": "https://github.com/ephpm/session-handler/issues",
"source": "https://github.com/ephpm/session-handler"
},
"require": {
"php": "^8.2",
"ext-session": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0"
},
"autoload": {
"psr-4": {
"Ephpm\\SessionHandler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ephpm\\SessionHandler\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "stable"
}