-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
40 lines (40 loc) · 1.02 KB
/
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
36
37
38
39
40
{
"name": "hrevert/ht-session",
"description": "A Zend Framework 2 module to manage session configurations, session validators, storing session data in database.",
"type": "library",
"license": "MIT",
"keywords": [
"zf2",
"module",
"session"
],
"homepage": "https://github.com/hrevert/HtSession",
"authors": [
{
"name": "Hrevert Technologies",
"email": "[email protected]"
},
{
"name": "ojhaujjwal",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"zendframework/zend-stdlib": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-session": "~2.2"
},
"suggest": {
"zendframework/zend-db": "To store session in database"
},
"autoload": {
"psr-4": {
"HtSession\\": "src/"
},
"classmap": [
"./Module.php"
]
}
}