forked from bdewong/Zebra_Session
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
44 lines (44 loc) · 1.08 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
41
42
43
44
{
"name": "voku/session2db",
"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": "http://stefangabos.ro/php-libraries/zebra-session/",
"license": "LGPL-3.0",
"authors": [
{
"name": "Stefan Gabos",
"email": "contact@stefangabos.ro",
"homepage": "http://stefangabos.ro/",
"role": "Developer"
},
{
"name": "Lars Moelleken",
"email": "lars@moelleken.org",
"homepage": "http://moelleken.org/",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"voku/simple-mysqli": "~7.0 || ~8.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0 || ~7.0"
},
"autoload": {
"psr-4": {
"voku\\helper\\": "src/voku/helper/"
}
}
}