securiscan / jwt-verification
This package is made for Laravel/Lumen based microservices that need to verify JSON Web Tokens (JWT)
This package's canonical repository appears to be gone and the package has been frozen as a result.
Requires
- php: >=7.0
- ext-json: *
- firebase/php-jwt: ~5.0
- illuminate/auth: ~5.6
- illuminate/container: ~5.6
- illuminate/contracts: ~5.6
- illuminate/http: ~5.6
- illuminate/support: ~5.6
- vlucas/phpdotenv: ^3.3
This package is not auto-updated.
Last update: 2020-08-13 23:32:16 UTC
README
Introduction
This package is made for Laravel/Lumen based microservices who need to verify JSON Web Tokens (JWTs).
Installation Guide
First off you need to register the Securiscan\JWT\JwtServiceProvider::class in your Laravel or Lumen application. If you are using Laravel, don't forget to run the vendor:publish after. This will create a file called 'jwt.php' in your config directory.
Next you need to configure the package by setting the JWT_KEY and JWT_SUPPORTED_ALGORITHMS (default: RS256) environment variables. Please note that your public key file should be written on a single line using \n for a newline character.
License
This package is open-sourced software licensed under the MIT license