simexis / mongodb-session
A MongoDB session driver for Laravel 5
0.0.11
2019-10-10 14:45 UTC
Requires
- php: >=5.6.0
- illuminate/session: ~5.3
- jenssegers/mongodb: *
This package is auto-updated.
Last update: 2026-03-15 21:56:10 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',