Simple session handler for xervice components.
composer require xervice/session
You must add the plugin \Xervice\Session\Communication\Plugin\SessionService to you Kernel stack.
$session = Locator::getInstance()->session()->facade();
$session->set('key', 'value');
$session->get('key')
$session->has('key')
$session->remove('key')
