From 58035a0e7d61ee0d63f8e03519d9aa0be10495e3 Mon Sep 17 00:00:00 2001 From: omegaalfa Date: Thu, 1 Jan 2026 22:45:52 -0300 Subject: [PATCH] Adding JwToken library to the PHP section. JwToken is a modern, security-focused JWT library for PHP 8.4+ with: - Full RFC 7519 compliance - Support for HS256/384/512 and RS256/384/512 algorithms - Built-in key rotation and token revocation - Zero security vulnerabilities (audited December 2025) - Comprehensive claim validation Repository: https://github.com/omegaalfa/jwtoken --- src/data/libraries-next.json | 37 ++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/src/data/libraries-next.json b/src/data/libraries-next.json index 5de66633..152b047b 100644 --- a/src/data/libraries-next.json +++ b/src/data/libraries-next.json @@ -3035,6 +3035,43 @@ "repoUrl": "https://github.com/nowakowskir/php-jwt", "installCommandMarkdown": ["composer require nowakowskir/php-jwt"], "stars": 37 + }, + { + "minimumVersion": "1.0.1", + "support": { + "sign": true, + "verify": true, + "iss": true, + "sub": true, + "aud": true, + "exp": true, + "nbf": true, + "iat": true, + "jti": true, + "typ": true, + "hs256": true, + "hs384": true, + "hs512": true, + "rs256": true, + "rs384": true, + "rs512": true, + "es256": false, + "es384": false, + "es512": false, + "ps256": false, + "ps384": false, + "ps512": false, + "eddsa": false, + "es256k": false + }, + "authorUrl": "https://github.com/omegaalfa", + "authorName": "omegaalfa", + "gitHubRepoPath": "omegaalfa/jwtoken", + "repoUrl": "https://github.com/omegaalfa/jwtoken", + "installCommandMarkdown": [ + "composer require omegaalfa/jwtoken" + ], + "stars": 0 } ] },