diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 5f0c3a9..4f3d332 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,13 +10,18 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.2, 8.1, 8.0] - laravel: [8.*, 9.*] + laravel: [8.*, 9.*, 10.*] dependency-version: [prefer-lowest, prefer-stable] include: + - laravel: 10.* + testbench: ^8.0 - laravel: 8.* testbench: ^6.6 - laravel: 9.* testbench: 7.* + exclude + - laravel: 10.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 895344b..210e5cb 100644 --- a/composer.json +++ b/composer.json @@ -23,10 +23,10 @@ ], "require": { "php": "^8.0|^8.1", - "illuminate/support": "^8.71|^9.0" + "illuminate/support": "^8.71|^9.0|^10.0" }, "require-dev": { - "orchestra/testbench": "^6.6|^7.0", + "orchestra/testbench": "^6.6|^7.0|^8.0", "pestphp/pest": "^1.22", "phpunit/phpunit": "^9.5" }, @@ -59,4 +59,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} \ No newline at end of file +}