goez/laravel-native-session

This package is abandoned and no longer maintained. No replacement package was suggested.

Laravel session driver for PHP native session

1.0.3 2016-09-29 12:16 UTC

This package is auto-updated.

Last update: 2020-01-29 04:16:39 UTC


README

Laravel session driver for PHP native session.

Inspired from stechstudio/laravel-raw-sessions.

You might not need this package

This package only for migration from legacy project, you should not use it in your new project.

Install

To get the latest version of laravel-native-session, simply require the project using Composer:

$ composer require goez/laravel-native-session

Instead, you may of course manually update your require block and run composer update if you so choose:

{
    "require": {
        "goez/laravel-native-session": "^1.0"
    }
}

Include the service provider within config/app.php.

'providers' => [
    ...
    Goez\LaravelNativeSession\ServiceProvider::class,
    ...
];

Finally, change the session cookie name in config/session.php (same as session.name in php.ini):

return [
    ...
    'cookie' => 'PHPSESSID',
    ...
];

License

MIT