omt/mongodb-session

A MongoDB session driver for Laravel 4

v1.2.0 2018-01-08 10:44 UTC

This package is auto-updated.

Last update: 2024-04-18 03:05:34 UTC


README

A MongoDB session driver for Laravel 4, inspired by LMongo. For more information about Sessions, check http://laravel.com/docs/eloquent.

Installation

Make sure you have omt\mongodb installed before you continue.

Install using composer:

composer require omt/mongodb-session

Add the session service provider in app/config/app.php:

'OMT\Mongodb\Session\SessionServiceProvider',

Change the session driver in app/config/session.php to mongodb:

'driver' => 'mongodb',

Optional: change the connection to a connection using the mongodb driver from app/config/database.php:

'connection' => 'mongodb',