Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 574 Bytes

File metadata and controls

26 lines (18 loc) · 574 Bytes

marko/session-file

File-based session driver--stores session data as files on disk with file locking for concurrent request safety.

Installation

composer require marko/session-file

Quick Example

use Marko\Session\Contracts\SessionHandlerInterface;
use Marko\Session\File\Handler\FileSessionHandler;

return [
    'bindings' => [
        SessionHandlerInterface::class => FileSessionHandler::class,
    ],
];

Documentation

Full usage, API reference, and examples: marko/session-file