A plugin provide single session authentication for Laravel 5.
$ composer require overtrue/laravel-single-session -vvv
- Register provider(if you disabled Laravel auto discovery)
'providers' => [
Overtrue\LaravelSingleSession\SingleSessionServiceProvider::class
],
- (Optional) Config the session:
// config/session.php
// The storage for store the last session id.
'last_session_storage' => 'cache', // cache(default)/database
// The field name of last session id.
'last_session_field' => 'last_session_id',
// The path of redirect when logout after session changed.
'redirect_path' => '/',
- it works.
If the session changed, the following event will be triggered:
Overtrue\LaravelSingleSession\Events\SessionExpired
想知道如何从零开始构建 PHP 扩展包?
请关注我的实战课程,我会在此课程中分享一些扩展开发经验 —— 《PHP 扩展包实战教程 - 从入门到发布》
MIT