jenssegers / mongodb-session
A MongoDB session driver for Laravel 4, 5, 6, 7 and 8
Installs: 277 119
Dependents: 4
Suggesters: 45
Security: 0
Stars: 77
Watchers: 7
Forks: 27
Open Issues: 11
Requires
- php: >=7.2
- illuminate/session: ~4.0|~5.0|~6.0|~7.0|~8.0
- jenssegers/mongodb: *
README
A MongoDB session driver for Laravel 4, 5, 6, 7 or 8 which is 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.
Laravel Version Compatibility
Install using composer:
composer require jenssegers/mongodb-session
Add the session service provider in app/config/app.php
: (Below Laravel 7 Version)
'Jenssegers\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',