From 2cd5d5fc2958c6d1b57d224406c293f88af50444 Mon Sep 17 00:00:00 2001 From: Luis Gonzalez Date: Sun, 29 May 2022 14:15:06 -0500 Subject: [PATCH 1/2] Upgrade JWT Package This old version needs to be upgraded to avoid problems with other dependencies like Laravel Passport. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f5af2cd..db8e44e 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "phpseclib/phpseclib": "~2.0", "google/cloud-tasks": "^1.10", "thecodingmachine/safe": "^1.0|^2.0", - "firebase/php-jwt": "^5.0" + "firebase/php-jwt": "^5.5||^6.0" }, "require-dev": { "orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0", From f02d4bd8952ca506b2928ca2db4fba627f29de68 Mon Sep 17 00:00:00 2001 From: Marick van Tuil Date: Sun, 19 Jun 2022 12:49:12 +0200 Subject: [PATCH 2/2] Remove firebase/php-jwt require It is no longer needed to target a specific version as google/auth now supports both 5.x and 6.x of firebase/php-jwt --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index db8e44e..c01c313 100644 --- a/composer.json +++ b/composer.json @@ -11,8 +11,7 @@ "ext-json": "*", "phpseclib/phpseclib": "~2.0", "google/cloud-tasks": "^1.10", - "thecodingmachine/safe": "^1.0|^2.0", - "firebase/php-jwt": "^5.5||^6.0" + "thecodingmachine/safe": "^1.0|^2.0" }, "require-dev": { "orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0",