From 04a60523c6b9296e0d11abbb62121657d4174e51 Mon Sep 17 00:00:00 2001 From: Milwad <98118400+milwad-dev@users.noreply.github.com> Date: Sat, 1 Mar 2025 19:38:23 +0330 Subject: [PATCH 1/2] Update composer.json --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 2bfae5d..15d06a8 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "minimum-stability": "stable", "authors": [ { - "name": "milwad-dev", + "name": "Milwad Khosravi", "email": "milwad.dev@gmail.com", "role": "author", "homepage": "https://github.com/milwad-dev" @@ -46,11 +46,11 @@ }, "require": { "php": "^8.0", - "laravel/framework": "^9.0|^10.0|^11.0" + "laravel/framework": "^9.0|^10.0|^11.0|^12.0" }, "require-dev": { - "pestphp/pest-plugin-laravel": "^1.4.0|^2.0.0", - "orchestra/testbench": "^7.0|^8.0|^9.0" + "pestphp/pest-plugin-laravel": "^1.4.0|^2.0.0|^3.0.0", + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0" }, "config": { "sort-packages": true, From c33df6a9ce7041c7a0ac6aadaa7930e68e3e71ff Mon Sep 17 00:00:00 2001 From: Milwad <98118400+milwad-dev@users.noreply.github.com> Date: Sat, 1 Mar 2025 19:40:00 +0330 Subject: [PATCH 2/2] Update tests.yml --- .github/workflows/tests.yml | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 936d316..ab12d0e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,10 +8,14 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 8.1, 8.2, 8.3] - laravel: [9.*, 10.*, 11.*] + php: [8.0, 8.1, 8.2, 8.3, 8.4] + laravel: [9.*, 10.*, 11.*, 12.*] dependency-version: [prefer-lowest, prefer-stable] include: + - laravel: 12.* + testbench: 10.* + pest-plugin-laravel: 3.1.0 + - laravel: 11.* testbench: 9.* pest-plugin-laravel: 2.3.0 @@ -25,15 +29,27 @@ jobs: pest-plugin-laravel: 1.4.0 exclude: + - laravel: 12.* + php: 8.1 + + - laravel: 12.* + php: 8.0 + - laravel: 11.* php: 8.1 - + - laravel: 11.* php: 8.0 + - laravel: 10.* + php: 8.4 + - laravel: 10.* php: 8.0 + - laravel: 9.* + php: 8.4 + - laravel: 9.* php: 8.3