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 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,