-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
composer.json
28 lines (28 loc) · 979 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
{
"name": "stefangabos/zebra_session",
"type": "library",
"description": "A drop-in replacement for PHP's default session handler which stores session data in a MySQL database, providing better performance, 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-or-later",
"authors": [
{
"name": "Stefan Gabos",
"email": "[email protected]",
"homepage": "https://github.com/stefangabos",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.2"
},
"autoload": {
"classmap": [
"Zebra_Session.php"
]
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"squizlabs/php_codesniffer": "^3.10"
}
}