Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.7 KB

File metadata and controls

50 lines (33 loc) · 1.7 KB

Opis Session

Latest Stable Version Latest Unstable Version License

Session manager

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.

Important!

You can install additional storage adapters, for SQL databases and Redis, by using the optional Opis Storages package.

License

Opis Session is licensed under the Apache License, Version 2.0.

Requirements

  • PHP 5.3.* or higher

Installation

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';

Documentation

Examples and documentation can be found at http://opis.io/session .