rfy/jwt
composer require rfy/jwt
A JWT authentication provider based on Firebase JWT package
dev-master
Readme excerpt
RFY.JWT
This package is meant to make a TOKEN authentication possible for any request authentication attempt.
The possible responses are:
- AuthenticationSuccessfull which returns the authentication JWT token
- AuthenticationFailure which returns a message with the corresponding error code
To start using this package you will need to follow the following steps:
Include this package into your Neos Flow application by running:
composer require rfy/jwtAdd the below YAML to the projects Configuration/Routes.yaml:
- name: 'Token' uriPattern: '<TokenSubroutes>' defaults: '@format': 'json' s…Read more