forked from stefangabos/Zebra_Session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
24 lines (24 loc) · 884 Bytes
/
composer.json
File metadata and controls
24 lines (24 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "stefangabos/zebra_session",
"type": "library",
"description": "A PHP library acting as a wrapper for PHP's default session handling functions which stores data in a MySQL database, providing both better performance and better security and protection against session fixation and session hijacking.",
"keywords": ["session", "locking", "flash", "flashdata", "fixation", "hijack", "mysqli", "mysql", "database"],
"homepage": "https://github.com/stefangabos/Zebra_Session",
"license": "LGPL-3.0",
"authors": [
{
"name": "Stefan Gabos",
"email": "contact@stefangabos.ro",
"homepage": "https://github.com/stefangabos",
"role": "Developer"
}
],
"require": {
"php": ">=5.1.0"
},
"autoload": {
"classmap": [
"Zebra_Session.php"
]
}
}