Download the PHP package metarush/cookie-sessions without Composer
On this page you can find all versions of the php package metarush/cookie-sessions. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download metarush/cookie-sessions
More information about metarush/cookie-sessions
Files in metarush/cookie-sessions
Package cookie-sessions
Short Description Storageless sessions using encrypted cookies as session handler
License MIT
Informations about the package cookie-sessions
metarush/cookie-sessions
Storageless sessions using encrypted cookies as session handler
This library is a drop-in replacement for traditional session stores like filesystem, database, memory, etc.. Use this library to leverage browser cookies as session store and gain scalability without the maintenance of traditional session stores.
Install
Install via composer as metarush/cookie-sessions
Usage
-
Generate an encryption key by typing
vendor/bin/generate-defuse-key
in your terminal. - Define cookie options (refer to the options parameter of the \setcookie() function).
Note: Don't set expires
option, this library will use the session.gc_maxlifetime
ini directive instead.
-
Set the custom session handler on top of your script.
- Use
$_SESSIONS
normally
Notes
- This library uses
defuse/php-encryption
for encrypting session data in cookies - Keep the
$secretKey
hidden from public - Browsers generally have 4,000 bytes total cookie limit per domain
- An E_USER_WARNING will be thrown if you're trying to set a session variable that is equivalent to >= 4,000 bytes (in encrypted form)
- The limit counts data in encrypted form which is equivalent to roughly 1,900 of unencrypted data
- The limit doesn't account for other session data already written or scripts using cookies on the same domain
- Minimize session/cookie variables per domain to give way to other scripts if applicable