A laravel session timeout middleware
, (*1)
This package is a very simple but useful for handling session timeouts due to user inactivity on a website/application, (*2)
Installation
First, pull in the package through Composer., (*3)
"require": {
"unicodeveloper/laravel-sessiontimeout": "1.0.*"
}
Next you must add the Unicodeveloper\Http\Middleware\SessionTimeout to the kernel., (*4)
// app/Http/Kernel.php
...
protected $middleware = [
...
\Unicodeveloper\Http\Middleware\SessionTimeout::class,
];
Install
Via Composer, (*5)
``` bash
$ composer require unicodeveloper/laravel-sessiontimeout, (*6)
## Change log
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Testing
``` bash
$ composer test
Contributing
Please see CONTRIBUTING for details., (*7)
Credits
License
The MIT License (MIT). Please see License File for more information., (*8)