diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c92419e..6092e18 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,15 +10,21 @@ jobs: fail-fast: true matrix: php: [7.3, 7.4, 8.0, 8.1] - laravel: [8.*] + laravel: [8.*, 9.*] dependency-version: [prefer-lowest, prefer-stable] exclude: - php: 8.1 laravel: 8.* dependency-version: prefer-lowest + - php: 7.3 + laravel: 9.* + - php: 7.4 + laravel: 9.* include: - laravel: 8.* testbench: 6.* + - laravel: 9.* + testbench: 7.* #Testing php 8.1 with Laravel 8.74 as its lowest - php: 8.1 laravel: ^8.74 diff --git a/composer.json b/composer.json index 402d318..6e5aa21 100644 --- a/composer.json +++ b/composer.json @@ -25,13 +25,13 @@ }, "require": { "php": "^7.3|^8.0", - "illuminate/filesystem": "^8.0", - "illuminate/routing": "^8.0", - "illuminate/support": "^8.0" + "illuminate/filesystem": "^8.0|^9.0", + "illuminate/routing": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0" }, "require-dev": { "mockery/mockery": "^1.4", - "orchestra/testbench": "^6.0", + "orchestra/testbench": "^6.0|^7.0", "phpunit/phpunit": "^9.3.3", "squizlabs/php_codesniffer": "^3.6" },