forked from milqmedia/MQRedisSessionStorage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 873 Bytes
/
composer.json
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
{
"name": "milqmedia/mq-redis-session",
"description": "Zend Framework 2 redis session storage",
"type": "library",
"keywords": [
"redis",
"session",
"storage",
"zf2"
],
"homepage": "https://github.com/milqmedia/MQRedisSessionStorage",
"license": "New BSD License",
"authors": [
{
"name": "Johan Kuijt",
"email": "[email protected]",
"homepage": "http://www.milq.nl",
"role": "Hasselhoffer"
}
],
"require": {
"php": "^7.2 || ~8.0",
"laminas/laminas-cache": "^2.9.0",
"laminas/laminas-servicemanager": "^3.0",
"laminas/laminas-session": "^2.9.1"
},
"autoload": {
"psr-0": {
"MQRedisSessionStorage": "src/"
},
"classmap": [
"Module.php"
]
}
}