定制 plugins-world/laravel-jwt-auth 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

plugins-world/laravel-jwt-auth

Composer 安装命令:

composer require plugins-world/laravel-jwt-auth

包简介

LaravelJwtAuth plugin made by mouyong

README 文档

README

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

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.

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-03-09