This integration allows you to use storageless as an implementation for mezzio-session
composer require lcobucci/clock \
psr7-sessions/storageless \
psr7-sessions/storageless-mezzio-integration
use Lcobucci\Clock\SystemClock;
use Lcobucci\JWT\Signer\Key\InMemory;
use Mezzio\Session\SessionMiddleware;
use PSR7Sessions\Mezzio\Storageless\SessionPersistence;
use PSR7Sessions\Storageless\Http\SessionMiddleware as PSR7SessionMiddleware;
$app = \Mezzio\AppFactory::create();
$app->pipe(PSR7SessionMiddleware::fromSymmetricKeyDefaults(
InMemory::plainText('OpcMuKmoxkhzW0Y1iESpjWwL/D3UBdDauJOe742BJ5Q='),
1200
));
$app->pipe(new SessionMiddleware(new SessionPersistence(new SystemClock())));
use Lcobucci\Clock\SystemClock;
use Lcobucci\JWT\Signer\Key\InMemory;
use Mezzio\Session\SessionMiddleware;
use PSR7Sessions\Mezzio\Storageless\SessionPersistence;
use PSR7Sessions\Storageless\Http\SessionMiddleware as PSR7SessionMiddleware;
$app = \Mezzio\AppFactory::create();
$app->pipe(PSR7SessionMiddleware::fromSymmetricKeyDefaults(
InMemory::file('/path/to/private_key.pem'),
InMemory::file('/path/to/public_key.pem'),
1200
));
$app->pipe(new SessionMiddleware(new SessionPersistence(new SystemClock())));
Please refer to the contributing notes.
This project is made public under the MIT LICENSE.