cedricve / lockfile
A session driver which properly locks the file session driver for Laravel
Installs: 12 251
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-11-09 20:51:00 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',