arrow-web-sol/laravel-jwt-auth
Composer 安装命令:
composer require arrow-web-sol/laravel-jwt-auth
包简介
Authenticate users via JWT in Laravel.
README 文档
README
A simple method to authenticate users in Laravel via a JWT - http://jwt.io
A bearer token is taken from the request, this token is then checked using the configured JWT algorithm. If the token is deemed valid, the the request is "authenticated". This package will check to ensure the token was signed using an appropriate key and is valid at the time of the request (iat, nbf and exp claim checks).
A common use case is in authentication in Laravel micro-services. Your auth service (Passport for example) can issue a JWT on successful login. Your other services can then use this package to authenticate requests without touching your auth service. Because a JWT is cryptographicaly signed you can verify the token originated from your auth service and hasn't been tampered with.
Installation
composer require arrow-web-sol/laravel-jwt-auth
Then run
php artisan jwt-auth:publish:config
That creates a jwt-config.php config file, in here you can set the signing method used, hash used, key (hmac only) and the public key (rsa and ecdsa). The key or public key is used to verify the JWT.
NOTE: the jwt-config.php is merged into auth.php as part of the service provider boot process. It adds a guard and provider for 'jwt', which in most cases will never be set nor used. But if you do have a 'jwt' guard and or provider in your auth.php file then be aware this package will override that key.
Middleware
To protect routes, you can now use 'auth:jwt':
Route::middleware('auth:jwt')->get('/user', [UserController::class, 'index']);
Or, to set default auth method, edit config/auth.php
'defaults' => [ 'guard' => 'jwt',
The package needs the token to be sent as a bearer token in the authorization header.
Testing
You can use the normal Laravel test methods:
//if jwt isn't your default guard $this->actingAs($user, 'jwt'); //if jwt is your default guard $this->actingAs($user);
Although we do this as part of our test suite, you can test the full token flow:
//NOTE: You need the private key set in config to do this for asymetric signatures $jwtConfig = $this->app()->make(\Arrow\JwtAuth\Contracts\JwtConfiguration::class); $token = $jwtConfig ->builder() ->issuedBy('https://arrow-web.dev') ->permittedFor('https://example.com') ->identifiedBy(Str::random(12)) ->issuedAt(now()->toDateTimeImmutable()) ->canOnlyBeUsedAfter(now()->toDateTimeImmutable()) ->expiresAt(now()->addHour()->toDateTimeImmutable()) ->withClaim('claim-name', 'claim-value') ->getToken($jwtConfig->signer(), $jwtConfig()->signingKey()); $this->withToken($token->toString()) ->getJson('/user') ->assertSuccessful();
arrow-web-sol/laravel-jwt-auth 适用场景与选型建议
arrow-web-sol/laravel-jwt-auth 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.62k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 03 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Authentication」 「laravel」 「jwt」 「Arrow Web Solutions」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 arrow-web-sol/laravel-jwt-auth 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 arrow-web-sol/laravel-jwt-auth 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 arrow-web-sol/laravel-jwt-auth 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Automatically logs-in users if they are already authenticated by a remote source. (e.g. environment variable REMOTE_USER)
GraphQL authentication for your headless Craft CMS applications.
A simple library to decode and parse Apple Sign In client tokens.
Laravel middleware to restrict a site or specific routes using HTTP basic authentication
JWT API authentication driver (Guard) for Laravel.
Email Toolkit Plugin for CakePHP
统计信息
- 总下载量: 3.62k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-03-03