dorcyv/jwt-session-bundle
Composer 安装命令:
composer require dorcyv/jwt-session-bundle
包简介
Provide a client side session with JWT tokens
README 文档
README
JwtSessionBundle is a PHP session replacement. Instead of use FileSystem, just use Json Web Token. Compatible with Symfony 3.4 and 4
Motivation
The default PHP Session does not work in different servers using round robin or other algorithms. This occurs because PHP Session are saved by default in the file system.
There are implementations can save the session to REDIS or MEMCACHED, for example. But this requires to you create a new server to store this session and creates a single point of failure. To avoid this you have to create REDIS/MEMCACHED clusters.
But if you save the session into JWT Token you do not need to create a new server. Just to use.
Security information
The JWT Token cannot be changed, but it can be read. This implementation save the JWT into a client cookie. Because of this do not store in the JWT Token sensible data like passwords.
Installation
Run composer require dorcyv/jwt-session-bundle
Set the session handler in the config/packages/framework.yaml file:
framework: session: handler_id: Dorcyv\JwtSessionBundle\Session\JwtSessionHandler
That's it !
统计信息
- 总下载量: 601
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-04-03