From 68243fc38e662d5bb5f26d4df5987a980698f2f4 Mon Sep 17 00:00:00 2001 From: Evgenii Morozov Date: Wed, 24 Sep 2025 11:53:13 +0200 Subject: [PATCH] add dependencies and new paths to JWT package --- vicephp/Virtue-JWT/composer.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vicephp/Virtue-JWT/composer.json b/vicephp/Virtue-JWT/composer.json index e507154..505a0aa 100644 --- a/vicephp/Virtue-JWT/composer.json +++ b/vicephp/Virtue-JWT/composer.json @@ -9,7 +9,8 @@ "sort-packages": true }, "require": { - "ext-openssl": "*" + "ext-openssl": "*", + "ext-sodium": "*" }, "require-dev": { "ext-SimpleXML": "*", @@ -26,14 +27,16 @@ "psr-4": { "Virtue\\JWT\\": "src/JWT/", "Virtue\\JWK\\": "src/JWK/", - "Virtue\\Aws\\": "src/Aws/" + "Virtue\\Aws\\": "src/Aws/", + "Virtue\\Encoding\\": "src/Encoding/" } }, "autoload-dev": { "psr-4": { "Virtue\\JWT\\": "tests/JWT/", "Virtue\\JWK\\": "tests/JWK/", - "Virtue\\Aws\\": "tests/Aws/" + "Virtue\\Aws\\": "tests/Aws/", + "Virtue\\Encoding\\": "tests/Encoding/" } }, "suggest": {