forked from opis/session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
23 lines (23 loc) · 788 Bytes
/
composer.json
File metadata and controls
23 lines (23 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "opis/session",
"description": "Opis Session is a session manager library with support for multiple backend storages that provides developers with an API which allows them to handle session related informations in a standardised way.",
"keywords": ["opis", "session", "session storage", "session redis"],
"homepage": "http://www.opis.io/session",
"license": "Apache-2.0",
"authors": [
{
"name": "Marius Sarca",
"email": "marius.sarca@gmail.com"
}
],
"require": {
"php": ">=5.3.0"
},
"suggest": {
"opis/storages": "Store users' session data using Redis and SQL databases"
},
"autoload": {
"psr-4": {"Opis\\Session\\": "lib/"},
"classmap": ["lib/PHP"]
}
}