cedricve/lockfile

A session driver which properly locks the file session driver for Laravel

v1.0.1 2017-06-14 20:10 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:31:56 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.

laravel/framework#6848

Some other topics regarding this issue.

laravel/framework#7549

laravel/framework#8172

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',