cedricve / lockfile
A session driver which properly locks the file session driver for Laravel
v1.0.1
2017-06-14 20:10 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2026-03-15 03:51:08 UTC
README
A service provider driver which properly locks the file session driver for Laravel.
History
This issue was resolved with a pull request that was never integrated in the Laravel core, because the Laravel team wasn't able to reproduce it.
Some other topics regarding this issue.
Usage
Add to composer.json.
"cedricve/lockfile": "1.0.0",
Load Service Provider in app/config/app.config, immediately after SessionServiceProvider.
'Illuminate\Session\SessionServiceProvider',
'Cedricve\Lockfile\LockfileServiceProvider',
Load the lockfile session provider in app/config/session.php.
'driver' => 'lockfile',