From 81aa608dea3156a98728abdcec7f5135cad7c66e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 01:04:53 +0000 Subject: [PATCH 1/2] build(deps): bump firebase/php-jwt from 7.0.5 to 7.1.0 Bumps [firebase/php-jwt](https://github.com/firebase/php-jwt) from 7.0.5 to 7.1.0. - [Release notes](https://github.com/firebase/php-jwt/releases) - [Changelog](https://github.com/googleapis/php-jwt/blob/main/CHANGELOG.md) - [Commits](https://github.com/firebase/php-jwt/compare/v7.0.5...v7.1.0) --- updated-dependencies: - dependency-name: firebase/php-jwt dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- composer.lock | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/composer.lock b/composer.lock index 7021a3888..138955cba 100644 --- a/composer.lock +++ b/composer.lock @@ -8,16 +8,16 @@ "packages": [ { "name": "firebase/php-jwt", - "version": "v7.0.5", + "version": "v7.1.0", "source": { "type": "git", - "url": "https://github.com/firebase/php-jwt.git", - "reference": "47ad26bab5e7c70ae8a6f08ed25ff83631121380" + "url": "https://github.com/googleapis/php-jwt.git", + "reference": "b374a5d1a4f1f67fadc2165cdb284645945e2fc0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/47ad26bab5e7c70ae8a6f08ed25ff83631121380", - "reference": "47ad26bab5e7c70ae8a6f08ed25ff83631121380", + "url": "https://api.github.com/repos/googleapis/php-jwt/zipball/b374a5d1a4f1f67fadc2165cdb284645945e2fc0", + "reference": "b374a5d1a4f1f67fadc2165cdb284645945e2fc0", "shasum": "" }, "require": { @@ -26,6 +26,7 @@ "require-dev": { "guzzlehttp/guzzle": "^7.4", "phpfastcache/phpfastcache": "^9.2", + "phpseclib/phpseclib": "~3.0", "phpspec/prophecy-phpunit": "^2.0", "phpunit/phpunit": "^9.5", "psr/cache": "^2.0||^3.0", @@ -34,7 +35,8 @@ }, "suggest": { "ext-sodium": "Support EdDSA (Ed25519) signatures", - "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present" + "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present", + "phpseclib/phpseclib": "Support PS256 (RSASSA-PSS) signatures" }, "type": "library", "autoload": { @@ -59,16 +61,16 @@ } ], "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", - "homepage": "https://github.com/firebase/php-jwt", + "homepage": "https://github.com/googleapis/php-jwt", "keywords": [ "jwt", "php" ], "support": { - "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v7.0.5" + "issues": "https://github.com/googleapis/php-jwt/issues", + "source": "https://github.com/googleapis/php-jwt/tree/v7.1.0" }, - "time": "2026-04-01T20:38:03+00:00" + "time": "2026-06-11T17:54:14+00:00" }, { "name": "onelogin/php-saml", From 378f272b53aa60e9ee3728a5e588e80e1ede5960 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Mon, 22 Jun 2026 12:03:13 +0200 Subject: [PATCH 2/2] chore(ci): Adapt php version matrix Don't test php 8.2 with master as it is no longer suppported. Signed-off-by: Carl Schwan --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 2f99171f4..0fc36cc61 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -41,12 +41,12 @@ jobs: strategy: fail-fast: false matrix: - php-versions: [ "8.2", "8.3", "8.4", "8.5" ] + php-versions: ["8.3", "8.4", "8.5" ] databases: [ "mysql" ] server-versions: [ "master" ] include: - server-versions: "stable32" - php-versions: "8.3" + php-versions: "8.2" databases: "sqlite" - server-versions: "stable32" php-versions: "8.3"