项目作者: brace-project

项目描述 :
Session middleware for Brace Core Applications
高级语言: PHP
项目地址: git://github.com/brace-project/brace-mod-session.git
创建时间: 2021-02-16T11:48:10Z
项目社区:https://github.com/brace-project/brace-mod-session

开源协议:MIT License

下载


Action Status
Latest Stable Version
Total Downloads
License

brace-mod-session

Session middleware for Brace Core Applications

Installation

  1. composer require brace/mod-session

Usage

You can use the Brace\Session\SessionMiddleware in any
Brace Core Application.

this would look like following:

  1. \Brace\Core\AppLoader::extend(function (\Brace\Core\BraceApp $app) {
  2. (/*.....*/)
  3. $app->setPipe([
  4. new \Brace\Session\SessionMiddleware(
  5. new \Brace\Session\Storages\FileSessionStorage("/tmp"), // replace this with your chosen storage type and connection string
  6. 3600, // 1 hour ttl
  7. 86400 // 1 day expiration time
  8. ),
  9. (/*.....*/)
  10. ]);
  11. });

After this, you can access the session data inside any route/middleware that
has access to the \Brace\Core\BraceApp :

  1. AppLoader::extend(function (BraceApp $app) {
  2. $app->router->on("GET@/", function() use ($app) {
  3. $session = $app->get(SessionMiddleware::SESSION_ATTRIBUTE);
  4. $session->set('foo', 'bar');
  5. (/*....*/)
  6. return $response;
  7. });
  8. });

Examples

Contributing

Please refer to the contributing notes.

License

This project is made public under the MIT LICENSE