diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 5f0dbe9..baa0ef0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,13 +10,18 @@ jobs: matrix: os: [ubuntu-latest] php: [8.2, 8.1, 8.0] - laravel: [9.*, 8.*] + laravel: [10.*, 9.*, 8.*] dependency-version: [prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: 7.* - laravel: 8.* testbench: ^6.23 + 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 456e7ed..315a76e 100644 --- a/composer.json +++ b/composer.json @@ -36,14 +36,14 @@ ], "require": { "php": "^8.0", - "illuminate/support": "^8.0|^9.0", - "illuminate/http": "^8.0|^9.0", - "illuminate/contracts": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0|^10.0", + "illuminate/http": "^8.0|^9.0|^10.0", + "illuminate/contracts": "^8.0|^9.0|^10.0", "spatie/laravel-package-tools": "^1.9" }, "require-dev": { "phpunit/phpunit": "^9.5", - "orchestra/testbench": "^6.23|^7.0", + "orchestra/testbench": "^6.23|^7.0|^8.0", "spatie/test-time": "^1.2", "pestphp/pest": "^1.22", "spatie/pest-plugin-snapshots": "^1.1"