From 2962aefff6eed7290e6740a59ea131acce16ed20 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 4 Feb 2025 10:47:00 +0300 Subject: [PATCH 1/5] Added Laravel 12 support --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index e425ae8..f337ebc 100644 --- a/composer.json +++ b/composer.json @@ -29,15 +29,15 @@ "require": { "php": "^8.1", "dragon-code/support": "^6.13", - "illuminate/config": "^10.0 || ^11.0", - "illuminate/http": "^10.0 || ^11.0", - "illuminate/routing": "^10.0 || ^11.0", - "illuminate/support": "^10.0 || ^11.0", + "illuminate/config": "^10.0 || ^11.0 || ^12.0", + "illuminate/http": "^10.0 || ^11.0 || ^12.0", + "illuminate/routing": "^10.0 || ^11.0 || ^12.0", + "illuminate/support": "^10.0 || ^11.0 || ^12.0", "laravel-lang/config": "^1.6", "laravel-lang/locales": "^2.8" }, "require-dev": { - "orchestra/testbench": "^8.23 || ^9.1", + "orchestra/testbench": "^8.23 || ^9.1 || ^10.0", "pestphp/pest": "^2.34", "pestphp/pest-plugin-laravel": "^2.4", "symfony/var-dumper": "^6.0 || ^7.0" From 6ef0007bd93bf2f8b190d439cf4962dfb29aaefa Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 4 Feb 2025 10:48:12 +0300 Subject: [PATCH 2/5] Update tests.yml --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a823565..9fa7a28 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,10 +18,13 @@ jobs: fail-fast: true matrix: php: [ "8.1", "8.2", "8.3" ] - 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" name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }} From 3601edfc4c03334c2b7cfc1b5eb2a875bd1e7939 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Mon, 24 Feb 2025 21:14:00 +0300 Subject: [PATCH 3/5] Update composer.json --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index f337ebc..098a698 100644 --- a/composer.json +++ b/composer.json @@ -38,8 +38,8 @@ }, "require-dev": { "orchestra/testbench": "^8.23 || ^9.1 || ^10.0", - "pestphp/pest": "^2.34", - "pestphp/pest-plugin-laravel": "^2.4", + "pestphp/pest": "^2.34 || ^3.0", + "pestphp/pest-plugin-laravel": "^2.4 || ^3.0", "symfony/var-dumper": "^6.0 || ^7.0" }, "minimum-stability": "stable", From f969dcff3312219443706fb04c910f3ff65faf9e Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Mon, 24 Feb 2025 23:41:22 +0300 Subject: [PATCH 4/5] Update composer.json --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 098a698..7aa8039 100644 --- a/composer.json +++ b/composer.json @@ -33,8 +33,8 @@ "illuminate/http": "^10.0 || ^11.0 || ^12.0", "illuminate/routing": "^10.0 || ^11.0 || ^12.0", "illuminate/support": "^10.0 || ^11.0 || ^12.0", - "laravel-lang/config": "^1.6", - "laravel-lang/locales": "^2.8" + "laravel-lang/config": "^1.12", + "laravel-lang/locales": "^2.10" }, "require-dev": { "orchestra/testbench": "^8.23 || ^9.1 || ^10.0", From de943052f76e152183a49836fc92e12c4bcff40c Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 25 Feb 2025 00:03:57 +0300 Subject: [PATCH 5/5] Added tests for PHP 8.4 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9fa7a28..276a34d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ "8.1", "8.2", "8.3" ] + php: [ "8.1", "8.2", "8.3", "8.4" ] laravel: [ "10.0", "11.0", "12.0" ] exclude: - laravel: "11.0"