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.
The currently supported storages are: File, Mongo and the native storage.
You can install additional storage adapters, for SQL databases and Redis, by using the optional Opis Storages package.
Opis Session is licensed under the Apache License, Version 2.0.
- PHP 5.3.* or higher
This library is available on Packagist and can be installed using Composer.
{
"require": {
"opis/session": "^3.0.0"
}
}
If you are unable to use Composer you can download the
tar.gz or the zip
archive file, extract the content of the archive and include de autoload.php
file into your project.
require_once 'path/to/session-3.0.0/autoload.php';
Examples and documentation can be found at http://opis.io/session .