feat: add JWK support for JWT validation and update dependencies
All checks were successful
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 4m21s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 4m37s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 4m35s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 4m25s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 4m27s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 3m9s

This commit is contained in:
2025-11-17 18:18:51 -05:00
parent 7aa14c0db3
commit 5947d7f518
8 changed files with 596 additions and 15 deletions

View File

@@ -51,7 +51,7 @@ return [
'signing_key' => Env::get('JWT_SIGNING_KEY', 'a_super_secret_key'),
'audience' => Env::get('JWT_AUDIENCE', 'my_audience'),
'issuer' => Env::get('JWT_ISSUER', 'my_issuer'),
'strict_validation' => Env::get('JWT_STRICT_VALIDATION', true, 'bool'),
'strict_validation' => Env::get('JWT_STRICT_VALIDATION', false, 'bool'),
],
'queue' => [