diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a5607f6..051b5b0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,14 +6,18 @@ jobs: strategy: matrix: php: ['8.0', '8.1'] - laravel: [8.*, 9.*] + laravel: [8.*, 9.*, 10.*] dependency-version: [prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: 7.* - laravel: 8.* testbench: 6.* exclude: + - laravel: 10.* + php: 8.0 - laravel: 9.* php: 7.4 diff --git a/composer.json b/composer.json index 040f2c8..818b269 100644 --- a/composer.json +++ b/composer.json @@ -19,11 +19,11 @@ }, "require": { "php": "^8.0 || ^8.1", - "illuminate/support": "^8.0 || ^9.0" + "illuminate/support": "^8.0 || ^9.0|^10.0" }, "require-dev": { - "orchestra/testbench": "^6.25.1", - "phpunit/phpunit": "^9.6.0" + "orchestra/testbench": "^6.25.1|^8.0", + "phpunit/phpunit": "^9.6.0|^9.5.10" }, "minimum-stability": "dev", "prefer-stable": true, @@ -38,9 +38,7 @@ } }, "config": { - "allow-plugins": { - - }, + "allow-plugins": [], "sort-packages": true }, "extra": {