From 714f1a9e12210ea3ac583b35e4141772119236f0 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 4 Feb 2025 11:01:49 +0300 Subject: [PATCH 1/2] Added Laravel 12 support --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index c468981a..b28ae68c 100644 --- a/composer.json +++ b/composer.json @@ -48,9 +48,9 @@ "composer/semver": "^3.4", "dragon-code/pretty-array": "^4.1", "dragon-code/support": "^6.11.3", - "illuminate/collections": "^10.0 || ^11.0", - "illuminate/console": "^10.0 || ^11.0", - "illuminate/support": "^10.0 || ^11.0", + "illuminate/collections": "^10.0 || ^11.0 || ^12.0", + "illuminate/console": "^10.0 || ^11.0 || ^12.0", + "illuminate/support": "^10.0 || ^11.0 || ^12.0", "laravel-lang/config": "^1.0", "laravel-lang/locales": "^2.3", "league/commonmark": "^2.4.1", @@ -58,7 +58,7 @@ }, "require-dev": { "laravel-lang/json-fallback": "^2.0", - "orchestra/testbench": "^8.14 || ^9.0", + "orchestra/testbench": "^8.14 || ^9.0 || ^10.0", "phpunit/phpunit": "^10.4.2", "symfony/var-dumper": "^6.3.6 || ^7.0" }, From 74e58024d7546249c3561d624b980b1e21c34a87 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 4 Feb 2025 11:02:21 +0300 Subject: [PATCH 2/2] Update phpunit.yml --- .github/workflows/phpunit.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 61389c88..12827f95 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -11,10 +11,12 @@ jobs: matrix: os: [ "ubuntu", "macos" ] php: [ "8.1", "8.2", "8.3", "8.4" ] - laravel: [ "10.0", "11.0" ] + laravel: [ "10.0", "11.0", "12.0" ] exclude: - laravel: "11.0" php: "8.1" + - laravel: "12.0" + php: "8.1" runs-on: ${{ matrix.os }}-latest