phpsoftbox/session
Composer 安装命令:
composer require phpsoftbox/session
包简介
Session component for the PhpSoftBox framework
README 文档
README
Компонент для работы с сессиями.
Пример
use PhpSoftBox\Session\Session; use PhpSoftBox\Session\NativeSessionStore; $session = new Session(new NativeSessionStore()); $session->start(); $session->set('user_id', 1); $session->flash('notice', 'Saved'); $session->save();
Middleware
use PhpSoftBox\Session\CsrfMiddleware; use PhpSoftBox\Session\SessionMiddleware; $sessionMw = new SessionMiddleware($session); $csrfMw = new CsrfMiddleware($session);
统计信息
- 总下载量: 102
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-02-06