From e0aaf8e6305b7cbcc47ba95322994e650cc68b0a Mon Sep 17 00:00:00 2001 From: Kevin Richter Date: Mon, 30 Mar 2026 12:13:20 +0200 Subject: [PATCH] feat: add support for phpunit 13 --- .github/workflows/tests.yml | 29 ++++++++++++++++------------- composer.json | 2 +- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 16ee665..99e411c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,26 +19,29 @@ jobs: matrix: php: [8.2, 8.3, 8.4, 8.5] laravel: [10, 11, 12, 13] - phpunit: [10.5, 11, 12] + phpunit: [10.5, 11, 12, 13] exclude: + # PHPUnit Requirements - php: 8.2 - laravel: 13 phpunit: 12 - php: 8.2 - laravel: 13 - phpunit: 11 + phpunit: 13 + - php: 8.3 + phpunit: 13 + # Laravel Requirements - php: 8.2 laravel: 13 - phpunit: 10.5 - - php: 8.2 - laravel: 12 - phpunit: 12 - - php: 8.2 - laravel: 11 - phpunit: 12 - - php: 8.2 - laravel: 10 + # Combinations + - laravel: 10 phpunit: 12 + - laravel: 10 + phpunit: 13 + - laravel: 11 + phpunit: 13 + - laravel: 12 + phpunit: 13 + - laravel: 13 + phpunit: 10.5 steps: - name: Checkout Code diff --git a/composer.json b/composer.json index ce2995d..6eb759d 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "ext-json": "*", "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0", "illuminate/support": "^10.0|^11.0|^12.0|^13.0", - "phpunit/phpunit": "^10.5|^11.0|^12.0" + "phpunit/phpunit": "^10.5|^11.0|^12.0|^13.0" }, "autoload": { "psr-4": {