jwt-auth
jwt-auth copied to clipboard
🔐 JSON Web Token Authentication for Laravel & Lumen
### Subject of the issue Right now library is not Octane compatible, (e.g. places like [this](src/Providers/LaravelServiceProvider.php#48 are [not allowed](https://laravel.com/docs/master/octane#dependency-injection-and-octane) use `$this->app`, `config(...)` function call inside providers [should be replaced](https://laravel.com/docs/master/octane#configuration-repository-injection) by...
### Subject of the issue ``` TypeError Lcobucci\JWT\Signer\Key\InMemory::plainText(): Argument #1 ($contents) must be of type string, null given, called in /Users/renatop/projects/csdl/api/vendor/php-open-source-saver/jwt-auth/src/Providers/JWT/Lcobucci.php on line 88 at vendor/lcobucci/jwt/src/Signer/Key/InMemory.php:30 26▕ { 27▕ return...
### Subject of the issue Right now multiple drivers for JWT (`lcobucci/jwt` and `namshi/jose`), Auth and Storage uses some custom hacky solution ([1](src/Providers/AbstractServiceProvider.php#344), [2](config/config.php#278), when Laravel provides special solution for...
As we forked this package from Tumondesigns we need to give him the credits in the default readme.MD and remove the wiki that he created and create on our own...
Updates the requirements on [rector/rector](https://github.com/rectorphp/rector) to permit the latest version. Release notes Sourced from rector/rector's releases. Released Rector 0.14.2 Bugfixes :bug: [Php74] Skip Nested ternary parenthesized multiline on ParenthesizeNestedTernaryRector (#2902)...
### Subject of the issue Could not signed token with RS256 algo. Gets an error: Could not create token: It was not possible to parse your key, reason: error:1E08010C:DECODER routines::unsupported...
### Summary I have customized the user verification process. At this time, I use the user's unique identifier to log in, and it is prompted that there is no such...
I have been carefully examining the code, and I always find that this package is difficult to maintain due to the instability of the main jwt service, so I consider...
Im having the same issue as in this issue over in the old repo: https://github.com/tymondesigns/jwt-auth/issues/891 The short of it is, I have a custom claim in my user model: ```php...
### Use JWT in Artisan Command I try to get a admin token in a artisan command with this code: `$token = Auth('api')->tokenById(1);` and this exception returned: PHPOpenSourceSaver\JWTAuth\Exceptions\JWTException Could not...