unicodeveloper / laravel-sessiontimeout
A middleware to deal with your sessiontimeout problems in Laravel 5
Installs: 1 594
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 5
Forks: 8
Open Issues: 1
Requires
- php: >=5.5.9
Requires (Dev)
- phpunit/phpunit: 4.*
- scrutinizer/ocular: ~1.1
This package is auto-updated.
Last update: 2024-11-07 17:52:55 UTC
README
This package is a very simple but useful for handling session timeouts due to user inactivity on a website/application
Installation
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, ];
Install
Via Composer
$ composer require unicodeveloper/laravel-sessiontimeout
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.