eskirex / session
Eskirex Session Component
Installs: 17
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/eskirex/session
Requires
- php: ^7.1.3
- eskirex/dotify: dev-master
This package is not auto-updated.
Last update: 2025-09-28 09:50:48 UTC
README
Hello. This is Session component.
Examples
<?php require __DIR__ . '/vendor/autoload.php'; use Eskirex\Component\Session\Exceptions\SessionRuntimeException; use Eskirex\Component\Session\Session; $session = new Session(); try { $session->start(); } catch (SessionRuntimeException $e) { } $session->set('foo.bar', 'baz'); echo $session->get('foo.bar'); // baz print_r($session->get('foo')); // Array // ( // [bar] => baz // )
License
MIT