phore / jwt
Phore JWT library
Installs: 43
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/phore/jwt
Requires
- php: >=7.2
- ext-json: *
- ext-openssl: *
- phore/asn-der: dev-master
- phore/cache: dev-master
- phore/http-client: dev-master
- phore/objectstore: dev-master
- psr/log: dev-master
Requires (Dev)
This package is auto-updated.
Last update: 2025-09-17 02:03:43 UTC
README
JSON Web Token (JWT) library
Based on:
- JSON Web Token (JWT) - https://tools.ietf.org/html/rfc7519
- JSON Web Signature (JWS) - https://tools.ietf.org/html/rfc7515
- JSON Web Key (JWK) - https://tools.ietf.org/html/rfc7517
- JSON Web Algorithms (JWA) - https://tools.ietf.org/html/rfc7518
- JSON Web Token Best Current Practices - https://tools.ietf.org/html/rfc8725
- OpenID Connect Core 1.0 - https://openid.net/specs/openid-connect-core-1_0.html
- JSON Web Key (JWK) Thumbprint - https://www.rfc-editor.org/rfc/rfc7638.html
Not implemented:
- JSON Web Encryption (JWE) - https://tools.ietf.org/html/rfc7516
- JSON Web Signature (JWS) Unencoded Payload Option - https://tools.ietf.org/html/rfc7797
Test keys created with http://keytool.online/
Token creation and parsing validated using https://jwt.io/
Currently supported JWS signature algorithms: HS256, HS512, RS256, RS512