forked from JamieCressey/PHP-MySQL-Session-Handler
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 784 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 784 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
25
26
27
28
{
"name": "programster/mysql-session-handler",
"type": "library",
"description": "MySQL PHP Session Handler",
"keywords": ["php", "mysql", "sessions"],
"homepage": "https://github.com/programster/PHP-MySQL-Session-Handler",
"license": "MIT",
"authors": [
{
"name": "Jamie Cressey",
"email": "jamiecressey89@gmail.com",
"homepage": "https://github.com/jamiecressey"
},
{
"name": "Stuart Page (aka Programster)",
"email": "sdpagent@gmail.com",
"homepage": "https://github.com/programster"
}
],
"require": {
"php": ">=7.0.0"
},
"autoload": {
"psr-4": {
"Programster\\SessionHandler\\": "src/"
}
}
}