krisell / laravel-session-migrator
Migrate Laravel session serialization method and driver without dropping any sessions.
Requires
- php: ^8.0.2
- illuminate/support: ^9.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.8
- orchestra/testbench: ^7.2
- phpunit/phpunit: ^9.0
README
Migrate Laravel session driver or serialization method in production without dropping sessions.
Installation
composer require krisell/laravel-session-migrator
Features
This package allows production applications to update some of the session configuration without dropping any active sessions and signing users out. More specifically, two session configuration options can be migrated:
-
Session serialization method (
php
orjson
), regardless of driverLaravel 9 introduced the option to serialize session data using
json
rather than php'sserialize
, and might be preferred both from a security perspective and performance-wise. The method is changed by specifying'serialization' => 'json'
inconfig/session.php
, but changing that in a production app would normally cause all active sessions to be invalidated and users to be signed out. With this package, this setting can be migrated transparently to users. -
Session driver (from
file
orcookie
)This package also allows to define a driver being migrated from, such that a new driver can be used without dropping any session data (technically, the old driver is used as a fallback
read
source, but allwrites
are performed against the new driver).Note that currently, only the
file
andcookie
drivers are supported as being migrated from.
Usage
Installing the package intentionally doesn't activate any of the migration features. In order to perform a migration, update the session configuration to the new wanted settings, and then also perform one of the following:
- Add the following entry to your
config/session.php
file:
'migrate' => [ 'serialization' => true, // Enables transparent serialization method migration 'driver' => 'file' // Session driver you are migrating from ],
- Alternatively, you can set the following two environment variables:
SESSION_MIGRATE_SERIALIZATION=true
SESSION_MIGRATE_DRIVER=file
You can of course choose to only use the serialization migration, or only the driver migration. It should be very rare that one need to migrate both these at the same time, although that is also supported.
Note specifically that migrate.driver
is the driver you are migrating from, i.e. the previously used driver. The
new driver or serialization method is configured just as normal, in the config file or environment variables.
You only need this package during a short transition period where your application might still have session data using the old format. The length of this depends on your session lifetime. As an example, if your session expires after 2 hours, you only need to run this package in production for those two hours, although keeping it around longer does no harm. For performance reasons, you should certainly disable and preferable remove this package eventually after the transition has been completed.
Pre-production applications
There is no reason to use this package in pre-production applications or local environments, execept of course for testing before using live. If dropping sessions doesn't matter in your use case, simply update the session configuration as normal and skip this package.
Testing
composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email martin.krisell@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.