goez / laravel-native-session
Laravel session driver for PHP native session
Installs: 26 362
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 0
Forks: 6
Open Issues: 2
Requires (Dev)
- illuminate/support: ^5.3
- phpunit/phpunit: *
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