duncan3dc / sessions
A non-blocking session manager
Installs: 125 106
Dependents: 8
Suggesters: 0
Security: 0
Stars: 27
Watchers: 3
Forks: 9
Open Issues: 0
Requires
- php: ^7.4 || ^8.0
- ext-mbstring: *
- ext-session: *
- psr/http-message: ^1.0
- psr/http-server-handler: ^1.0
- psr/http-server-middleware: ^1.0
- psr7-sessions/storageless: ^8.0
Requires (Dev)
- duncan3dc/object-intruder: ^0.3 || ^1.0
- guzzlehttp/guzzle: 6.4.*
- laminas/laminas-stratigility: ^3.0
- lcobucci/jwt: ^4.0
- maglnet/composer-require-checker: ^3.0
- mockery/mockery: ^1.5
- phpstan/phpstan: ^0.12.100
- phpstan/phpstan-mockery: ^0.12.14
- phpstan/phpstan-phpunit: ^0.12.22
- phpunit/phpunit: ^8.0
- squizlabs/php_codesniffer: ^3.7
README
A non-blocking session handler for PHP
Full documentation is available at http://duncan3dc.github.io/sessions/
PHPDoc API documentation is also available at http://duncan3dc.github.io/sessions/api/
Quick Examples
$session = new \duncan3dc\Sessions\SessionInstance("my-app"); $session->set("current-status", 4); $currentStatus = $session->get("current-status");
Avoid common key clashes:
$session->set("user", "Mark"); $backend = $session->createNamespace("backend"); $backend->set("user", "Caroline"); $session->get("user"); # "Mark" $backend->get("user"); # "Caroline"
Store one-time flash messages:
$session->setFlash("message", "Your profile has been updated"); $session->getFlash("message"); # "Your profile has been updated"; $session->getFlash("message"); # null;
There is also a static class you can use with all the features above:
use \duncan3dc\Sessions\Session; Session::name("my-app"); Session::set("current-status", 4); $currentStatus = Session::get("current-status");
Read more at http://duncan3dc.github.io/sessions/
Changelog
A Changelog has been available since the beginning of time
Where to get help
Found a bug? Got a question? Just not sure how something works?
Please create an issue and I'll do my best to help out.
Alternatively you can catch me on Twitter
duncan3dc/sessions for enterprise
Available as part of the Tidelift Subscription
The maintainers of duncan3dc/sessions and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.