simexis/mongodb-session

A MongoDB session driver for Laravel 5

0.0.11 2019-10-10 14:45 UTC

This package is auto-updated.

Last update: 2024-10-15 18:40:24 UTC


README

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

Installation

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

Install using composer:

composer require simexis/mongodb-session

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

'Simexis\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',