| Package Data | |
|---|---|
| Maintainer Username: | unicodeveloper | 
| Maintainer Contact: | prosperotemuyiwa@gmail.com (Prosper Otemuyiwa) | 
| Package Create Date: | 2015-11-23 | 
| Package Last Update: | 2015-11-23 | 
| Home Page: | |
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-31 03:04:31 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 2,298 | 
| Monthly Downloads: | 57 | 
| Daily Downloads: | 3 | 
| Total Stars: | 10 | 
| Total Watchers: | 3 | 
| Total Forks: | 8 | 
| Total Open Issues: | 1 | 
This package is a very simple but useful for handling session timeouts due to user inactivity on a website/application
First, pull in the package through Composer.
"require": {
    "unicodeveloper/laravel-sessiontimeout": "1.0.*"
}
Next you must add the Unicodeveloper\Http\Middleware\SessionTimeout to the kernel.
// app/Http/Kernel.php
...
protected $middleware = [
    ...
    \Unicodeveloper\Http\Middleware\SessionTimeout::class,
];
Via Composer
$ composer require unicodeveloper/laravel-sessiontimeout
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.