From 43a3ee5774e40b44c7fb902b4b24842120a428bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristjan=20K=C3=A4=C3=A4rma?= Date: Thu, 16 Apr 2026 10:51:26 +0300 Subject: [PATCH 1/2] feat: declare Laravel 13 and PHP 8.5 support --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 72a60ea..5415c2f 100644 --- a/composer.json +++ b/composer.json @@ -11,8 +11,8 @@ "test": "XDEBUG_MODE=coverage phpunit --coverage-text" }, "require": { - "php" : "^7.1 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4", - "laravel/framework": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "php" : "^7.1 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4 || ^8.5", + "laravel/framework": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0", "predis/predis": "^2.2", "guzzlehttp/guzzle": "^7.5.0", "ext-json": "*" From d7a42b06e3f1636ec1c3d75f137cc8bf8fd385c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristjan=20K=C3=A4=C3=A4rma?= Date: Thu, 16 Apr 2026 10:57:30 +0300 Subject: [PATCH 2/2] Add PHP 8.5 to the testing matrix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 462dfb0..4f3c320 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: --health-retries 5 strategy: matrix: - php: ['8.2', '8.3', '8.4'] + php: ['8.2', '8.3', '8.4', '8.5'] fail-fast: false steps: - uses: actions/checkout@v3