2017 © Pedro Peláez
 

library sessions

A non-blocking session manager

image

duncan3dc/sessions

A non-blocking session manager

  • Sunday, April 15, 2018
  • by duncan3dc
  • Repository
  • 1 Watchers
  • 18 Stars
  • 13,583 Installations
  • PHP
  • 5 Dependents
  • 0 Suggesters
  • 5 Forks
  • 0 Open issues
  • 9 Versions
  • 6 % Grown

The README.md

sessions

A non-blocking session handler for PHP, (*1)

Full documentation is available at http://duncan3dc.github.io/sessions/
PHPDoc API documentation is also available at http://duncan3dc.github.io/sessions/api/, (*2)

release build coverage, (*3)

Quick Examples

$session = new \duncan3dc\Sessions\SessionInstance("my-app");
$session->set("current-status", 4);
$currentStatus = $session->get("current-status");

Avoid common key clashes:, (*4)

$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:, (*5)

$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:, (*6)

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/, (*7)

Changelog

A Changelog has been available since the beginning of time, (*8)

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, (*9)

duncan3dc/sessions for enterprise

Available as part of the Tidelift Subscription, (*10)

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., (*11)

The Versions

04/04 2018

1.4.0

1.4.0.0 https://github.com/duncan3dc/sessions

A non-blocking session manager

  Sources   Download

Apache-2.0

The Requires

  • ext-session *
  • php ^5.6|^7.0

 

The Development Requires

non-blocking session

16/11 2017

dev-drop-php-5-support

dev-drop-php-5-support https://github.com/duncan3dc/sessions

A non-blocking session manager

  Sources   Download

Apache-2.0

The Requires

  • ext-session *
  • php ^7.0

 

The Development Requires

non-blocking session

16/11 2017

1.3.0

1.3.0.0 https://github.com/duncan3dc/sessions

A non-blocking session manager

  Sources   Download

Apache-2.0

The Requires

  • ext-session *
  • php ^5.6|^7.0

 

The Development Requires

non-blocking session

18/07 2017

1.2.0

1.2.0.0 https://github.com/duncan3dc/sessions

A non-blocking session manager

  Sources   Download

Apache-2.0

The Requires

  • ext-session *
  • php ^5.6|^7.0

 

The Development Requires

non-blocking session

31/01 2017

1.1.0

1.1.0.0 https://github.com/duncan3dc/sessions

A non-blocking session manager

  Sources   Download

Apache-2.0

The Requires

  • ext-session *
  • php ^5.6|^7.0

 

The Development Requires

non-blocking session

19/07 2015

1.0.0

1.0.0.0 https://github.com/duncan3dc/sessions

A non-blocking session manager

  Sources   Download

Apache-2.0

The Requires

  • ext-session *
  • php >=5.6.0

 

The Development Requires

non-blocking session