jwt-auth icon indicating copy to clipboard operation
jwt-auth copied to clipboard

🔐 JSON Web Token Authentication for Laravel & Lumen

Results 34 jwt-auth issues
Sort by recently updated
recently updated
newest added

### Summary look at file PHPOpenSourceSaver\JWTAuth\Providers\LaravelServiceProvider:45 if (isset($_SERVER['LARAVEL_OCTANE'])) { $clear = function () { JWTAuth::clearResolvedInstances(); You clear only when octane is enabled, i use [larave-S ](https://github.com/hhxsv5/laravel-s) yet another laravel +...

enhancement

Support lcobucci/jwt ^5.0 and drop support for versions below Laravel 9 ## Description * Lcobucci made some breaking changes [in its 5.0 release](https://lcobucci-jwt.readthedocs.io/en/latest/upgrading/#v4x-to-v5x) * Laravel 9 [reached its EOL](https://endoflife.date/laravel) but...

## Description Good news: it works! Due to the wide range of PHP, Laravel _and_ phpunit versions we support here, some misc changes around the test procedure had to be...

## Description There is a problem. When a user is authorized, his data is written to getJWTCustomClaims. But if the user changes them during the session, the data in the...

needs test added

### Subject of the issue Some of the JSON models that we POST to our API contain a property called `token`. Since this library initializes the parser chain order as...

bug

### Subject of the issue Generated token with custom claims & secret (via `JWTAuth::getJWTProvider()->setSecret()`) isn't encoded with the custom secret. I have a method that will allow generation of custom...

bug

### Subject of the issue I've migrated my environment to Octane+Swoole and when making a request with `jwt.auth` middleware in `api.php`, the user is found using `Auth::user()` or `$request->user()`, but...

bug

### Couldn't refresh the token for expired token from **refresh** api I am following the exact steps from documentation to implement the Refresh token flow. But `refersh` api returns **401**...

bug

Updates the requirements on [lcobucci/jwt](https://github.com/lcobucci/jwt) to permit the latest version. Release notes Sourced from lcobucci/jwt's releases. 5.3.0 Release Notes for 5.3.0 This release ships a new validation constraint to assert...

dependencies

## Description This PR addresses the issue #249, refreshing the IAT claim when refreshing a token Fixes #249 ## Checklist: - [x] I've added tests for my changes or tests...