From 2951b1b6e8c5bc624181f032f66f0256366128a3 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 4 Feb 2025 10:49:37 +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 9901b3e..48d3160 100644 --- a/composer.json +++ b/composer.json @@ -23,16 +23,16 @@ "deeplcom/deepl-php": "^1.7", "dragon-code/support": "^6.13", "guzzlehttp/guzzle": "^7.8", - "illuminate/config": "^10.0 || ^11.0", - "illuminate/http": "^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/support": "^10.0 || ^11.0 || ^12.0", "laravel-lang/config": "^1.7", "laravel-lang/locale-list": "^1.4", "stichoza/google-translate-php": "^5.1" }, "require-dev": { "mockery/mockery": "^1.6", - "orchestra/testbench": "^8.0 || ^9.0", + "orchestra/testbench": "^8.0 || ^9.0 || ^10.0", "pestphp/pest": "^2.34", "symfony/var-dumper": "^6.0 || ^7.0" }, From c1acaaebe8cd2dd2e1f7c44f6e5e876162df637b Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 4 Feb 2025 10:50:12 +0300 Subject: [PATCH 2/2] Update tests.yml --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 40f8d3f..857839a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,8 +17,8 @@ jobs: strategy: fail-fast: true matrix: - php: [ "8.2", "8.3" ] - laravel: [ "10.0", "11.0" ] + php: [ "8.2", "8.3", "8.4" ] + laravel: [ "10.0", "11.0", "12.0" ] name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}