thinksvip / xc-auth
xc-auth, yii2
v1.1.0
2023-07-28 08:05 UTC
Requires
- php: >=7.4
- ext-json: *
- ext-zlib: *
- firebase/php-jwt: ^6.4
- yiisoft/yii2-redis: ~2.0.0
This package is auto-updated.
Last update: 2024-10-28 10:50:04 UTC
README
调用示例
// 检测是否登陆 \Xc\Auth\XcAuth::login()->isLogin(); // 获取所有用户 \Xc\Auth\XcAuth::user()->getAllUsers(); // 获取数据权限 \Xc\Auth\XcAuth::perm()->data->get();
jwt配置文件参考
return [ 'jwt' => [ 'key' => '',// 密钥 'alg' => '',// 加密方式 'iss' => '',// 签发者,可选 'aud' => '',// 接收方,可选 'leeway' => 'int类型(单位:s)',// 留余时间 'type' => 'int类型',// 类型,固定值 ], ];