From 5b12a71c084285589a7e9b845cfa9e3cd5eebb82 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 21 Feb 2026 06:16:20 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 13 --- composer.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 643abf9..2e83db0 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,14 @@ "homepage": "https://github.com/meyfa/phpunit-assert-gd", "type": "library", "description": "PHPUnit matcher/assertions for GD image resources", - "keywords": ["phpunit", "assert", "gd", "matcher", "image", "resource"], + "keywords": [ + "phpunit", + "assert", + "gd", + "matcher", + "image", + "resource" + ], "license": "MIT", "authors": [ { @@ -13,7 +20,7 @@ ], "require": { "php": ">=8.1", - "phpunit/phpunit": "^10.1|^11.0", + "phpunit/phpunit": "^10.1|^11.0|^12.5.12", "ext-gd": "*" }, "require-dev": { From ee330dcecac0fab69df2d2b6fb50043e173f31d0 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 21 Feb 2026 06:16:20 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 02375f9..e1bcddb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,9 +10,11 @@ on: jobs: test: runs-on: ubuntu-latest + strategy: matrix: - php-versions: ['8.1', '8.2'] + php-versions: ['8.1', '8.2', '8.3', '8.4', '8.5'] + steps: - uses: actions/checkout@v4