Download the PHP package ellipse/session-validation without Composer
On this page you can find all versions of the php package ellipse/session-validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ellipse/session-validation
More information about ellipse/session-validation
Files in ellipse/session-validation
Package session-validation
Short Description Psr-15 middleware allowing to validate the user session ownership
License MIT
Homepage https://github.com/ellipsephp/session-validation
Informations about the package session-validation
Session validation
This package provides a Psr-15 middleware allowing to validate the user session ownership.
Require php >= 7.0
Installation composer require ellipse/session-validation
Run tests ./vendor/bin/kahlan
- Using the validate session middleware
Using the validate session middleware
This middleware let the developper define a callable producing a client signature from the processed Psr-7 request. This signature is stored in the session so the subsequent request client signatures can be compared to the saved one. When they do not match the session data are unset and the session id gets regenerated.
The callable passed to the middleware is called with the Psr-7 request being processed and must return an associative array containing client specific data. For example it's ip address or user agent.
The middleware can of course be used after the StartSessionMiddleware
from ellipse/session-start in order to start a session.
All versions of session-validation with dependencies
psr/http-message Version ^1.0
psr/http-server-handler Version ^1.0
psr/http-server-middleware Version ^1.0