snosborn/laraveljwtauth
Composer 安装命令:
composer require snosborn/laraveljwtauth
包简介
Laravel package for user module with jwt auth and api request docs
README 文档
README
Installation
Install the package by the following command,
composer require snosborn/laraveljwtauth:VERSION
Add Provider
Add the provider to your config/app.php into provider section if using lower version of laravel,
Tymon\JWTAuth\Providers\LaravelServiceProvider::class,
snosborn\laraveljwtauth\UserServiceProvider::class,
Add Facade
Add the Facade to your config/app.php into aliases section,
'JWTAuth' => Tymon\JWTAuth\Facades\JWTAuth::class,
'JWTFactory' => Tymon\JWTAuth\Facades\JWTFactory::class,
Add Guard in Auth file
Add the guard for api in config\auth.php file
'defaults' => [ 'guard' => 'api', 'passwords' => 'users', ],
'guards' => [ 'web' => [ 'driver' => 'session', 'provider' => 'users', ],
'api' => [
'driver' => 'jwt',
'provider' => 'users',
'hash' => false,
],
],
Add validator
Add the route middleware in middleware aliase section on kernel file
'validateuser' =>\App\Http\Middleware\ValidateUserMiddleware::class,
Publish the Assets
Run the following command to publish the files in package
php artisan vendor:publish --provider="Tymon\JWTAuth\Providers\LaravelServiceProvider" --force
php artisan jwt:secret
php artisan vendor:publish --force --provider="snosborn\laraveljwtauth\UserServiceProvider"
API DOC OPEN API 3.0
Run the following command to publish the package files
php artisan vendor:publish --tag=request-docs-config
php artisan route:cache
Optional publish assets
Currently after doing this the request doc url showing not found
php artisan vendor:publish --tag=request-docs-assets
Optional middleware
(optional) Add the following middleware to your API, so that the SQL logs and model events are captured.
app/Http/Kernel.php
'api' => [
...
\Rakutentech\LaravelRequestDocs\LaravelRequestDocsMiddleware::class,
... and so on
Usage: View in the browser on /request-docs/
Environment Variable changes
Add below mentioned variables to .env
SERVER_URL=BACKEND_SERVER_URL
Composer file changes
Add below snippet to autoload section in composer.json file.
"files": [
"app/Helpers/Helper.php"
]
Run composer install after adding
Countries,States, Cities data seeder
Run the seeder for insert data into respective tables after migrations
php artisan db:seed --class=CountryStateCitySeeder
Note: This seeder will take upto 30 minutes due to large data sets.
snosborn/laraveljwtauth 适用场景与选型建议
snosborn/laraveljwtauth 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 46 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 06 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 snosborn/laraveljwtauth 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 snosborn/laraveljwtauth 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 46
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 9
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-06-20