diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cc46654..b958b4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,10 +12,14 @@ jobs: strategy: matrix: - laravel: [^6, ^7, ^8, ^9] + laravel: [^6, ^7, ^8, ^9, 10.0] php: [7.4, 8.0, 8.1] exclude: + - laravel: 10.0 + php: 7.4 + - laravel: 10.0 + php: 8.0 - laravel: ^6 php: 8.1 - laravel: ^7 diff --git a/composer.json b/composer.json index 28d951d..d30c46f 100644 --- a/composer.json +++ b/composer.json @@ -22,11 +22,11 @@ ], "require": { "php": "^7.4 || ^8.0 || ^8.1", - "illuminate/support": "^6 || ^7 || ^8 || ^9" + "illuminate/support": "^6 || ^7 || ^8 || ^9|^10.0" }, "require-dev": { - "orchestra/testbench": "^4 || ^5 || ^6 || ^7", - "rector/rector": "0.13.x-dev", + "orchestra/testbench": "^4 || ^5 || ^6 || ^7|^8.0", + "rector/rector": "0.13.x-dev|^0.15", "tightenco/tlint": "dev-main" }, "minimum-stability": "dev",