diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 50ac21a..55b8783 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,11 +9,16 @@ jobs: fail-fast: false matrix: php: [8.2, 8.1, 8.0] - laravel: [9.*] + laravel: [10.*, 9.*] dependency-version: [prefer-stable] include: - laravel: 9.* testbench: 7.* + - laravel: 10.* + testbench: 8.* + exclude: + - laravel: 10.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index 7dba38a..79a9a00 100644 --- a/composer.json +++ b/composer.json @@ -13,14 +13,14 @@ "type": "library", "require": { "php": "^8.0", - "illuminate/console": "^9.0", - "illuminate/database": "^9.0", - "illuminate/events": "^9.0", - "illuminate/support": "^9.0" + "illuminate/console": "^9.0|^10.0", + "illuminate/database": "^9.0|^10.0", + "illuminate/events": "^9.0|^10.0", + "illuminate/support": "^9.0|^10.0" }, "require-dev": { "phpunit/phpunit": "^9.0", - "orchestra/testbench": "^7.0", + "orchestra/testbench": "^7.0|^8.0", "laravel/legacy-factories": "^1.0.4", "friendsofphp/php-cs-fixer": "^3.13", "nunomaduro/larastan": "^2.3"