plugins-world/laravel-jwt-auth
Composer 安装命令:
composer require plugins-world/laravel-jwt-auth
包简介
LaravelJwtAuth plugin made by mouyong
README 文档
README
This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
Installation
You can install the package via composer:
php artisan market:require plugins-world/laravel-jwt-auth composer require plugins-world/laravel-jwt-auth
Usage
单独使用登录功能时,请在 auth()->login() 时使用 Plugins\LaravelJwtAuth\Models\User,示例如下:
use Plugins\LaravelJwtAuth\Models\User as JwtModelUser; $inputPassword = \request('password'); $user = \App\Models\User::first(); if (Hash::check($user->password, $inputPassword)) { // get_class($user) !== config('auth.providers.api.model') 配置的模型时, // 需要将 $user 转换成配置的模型。后续验证才能通过登录验证。 $token = auth('api')->login(new JwtModelUser($user->toArray())); }
Testing
composer test
How to create this package
php artisan new LaravelJwtAuth
Please see plugin-manager for more information.
plugins-world/laravel-jwt-auth 适用场景与选型建议
plugins-world/laravel-jwt-auth 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 03 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 plugins-world/laravel-jwt-auth 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 plugins-world/laravel-jwt-auth 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-03-09