diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 71bb27d..0df5dc4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,13 +13,20 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [7.3, 7.4, 8.0] - laravel: [7.*, 8.*] + php: [7.3, 7.4, 8.0, 8.1] + laravel: [7.*, 8.*, 9.*] include: - laravel: 7.* testbench: ^5.0 - laravel: 8.* - testbench: ^6.6 + testbench: ^6.0 + - laravel: 9.* + testbench: ^7.0 + exclude: + - laravel: 9.* + php: 7.3 + - laravel: 9.* + php: 7.4 name: P${{ matrix.php }} - L${{ matrix.laravel }} diff --git a/composer.json b/composer.json index eefe3be..9169b38 100644 --- a/composer.json +++ b/composer.json @@ -12,12 +12,12 @@ ], "require": { "php": "^7.3|^8.0", - "laravel/framework": "^7.0|^8.0", + "laravel/framework": ">=7.0", "inertiajs/inertia-laravel": ">=0.5.0" }, "require-dev": { - "nunomaduro/collision": "^5.3", - "orchestra/testbench": ">=4.0", + "nunomaduro/collision": ">=^5.3", + "orchestra/testbench": ">=^5.0", "pestphp/pest": "^1.18", "pestphp/pest-plugin-laravel": "^1.1" },