From f297e79117d2613b4b346c4d9eb3266d410e5a9c Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Sun, 14 Feb 2021 13:53:52 -0800 Subject: [PATCH] composer.json - Require firebase/php-jwt (v3 - v5) When this version range? * It's a fairly popular package, so may be prone to conflicts. A wide range is desireable. * The low end (v3) is 5+ years old. The high end (v5) is current latest. * If you 'git diff' between v3=>v4=>v5, the changes are fairly incrementaly. They add more crypto algorithms, twiddle docblocks and PHP environment compatibility, and introduce a service we don't need (JWK). The main interfaces all look the same. * The only notable bit was that some exceptions were recategorized, but the broad taxonomy of exceptions still seems similar. --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 914dfad98f..cd21534faa 100644 --- a/composer.json +++ b/composer.json @@ -45,6 +45,7 @@ "php": "~7.2", "cache/integration-tests": "~0.17.0", "dompdf/dompdf" : "~0.8", + "firebase/php-jwt": ">=3 <6", "electrolinux/phpquery": "^0.9.6", "symfony/config": "~3.0 || ~4.4", "symfony/polyfill-iconv": "~1.0", -- 2.25.1