From 082f07ee8deb4530a011f035f6a6fb49f3b6111d Mon Sep 17 00:00:00 2001 From: Jason van Altena Date: Tue, 8 Apr 2025 15:01:32 +0200 Subject: [PATCH] Add support for Laravel 12 and Testbench 10 Updated GitHub Actions workflow and composer.json to include Laravel 12 and Testbench 10 compatibility. This ensures the project is tested and works with the latest framework versions. --- .github/workflows/test.yml | 2 +- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea8acd9..cf97a4b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: max-parallel: 6 # 12 fail-fast: false matrix: - laravel: [10, 11] + laravel: [10, 11, 12] php: ['8.2', '8.3', '8.4'] phpunit: [10] exclude: diff --git a/composer.json b/composer.json index 3eb7a0e..76ff9f9 100644 --- a/composer.json +++ b/composer.json @@ -12,11 +12,11 @@ "require": { "php": "^8.0", "rdx/laravelcollective-html": "^6", - "illuminate/database": "^10 || ^11", - "illuminate/validation": "^10 || ^11" + "illuminate/database": "^10 || ^11 || ^12", + "illuminate/validation": "^10 || ^11 || ^12" }, "require-dev": { - "orchestra/testbench": "^8 || ^9", + "orchestra/testbench": "^8 || ^9 || ^10", "phpunit/phpunit": "^10.0" }, "extra": {