diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 96d432f..6076633 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.*] stability: [prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: ^7.0 - laravel: 8.* testbench: ^6.6 + exclude: + - laravel: 10.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index eb7626c..ef01af2 100644 --- a/composer.json +++ b/composer.json @@ -12,9 +12,9 @@ ], "require": { "php": ">=7.4", - "illuminate/cache": "^8.0|^9.0", - "illuminate/database": "^8.0|^9.0", - "illuminate/support": "^8.0|^9.0" + "illuminate/cache": "^8.0|^9.0|^10.0", + "illuminate/database": "^8.0|^9.0|^10.0", + "illuminate/support": "^8.0|^9.0|^10.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.8",