diff --git a/.github/workflows/run-tests-laravel-8.yml b/.github/workflows/run-tests-laravel-8.yml index 6e36dc7..f12a70a 100644 --- a/.github/workflows/run-tests-laravel-8.yml +++ b/.github/workflows/run-tests-laravel-8.yml @@ -9,17 +9,23 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - php: [8.0, 7.4] - laravel: [8.*, 9.*] + php: [7.4, 8.0, 8.1] + laravel: [8.*, 9.*, 10.*] dependency-version: [prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 8.* testbench: 6.* - laravel: 9.* testbench: 7.* exclude: - laravel: 9.* - php: 7.4 + php: 7.4 + - laravel: 10.* + php: 8.0 + - laravel: 10.* + php: 7.4 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/README.md b/README.md index ad26433..c44109d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Some super useful redirect response macros to simplify your Laravel application. ## Requirements -PHP >= 7.2, Laravel >= 5.8. +Laravel `>=5.8 | 6.x | 7.x | 8.x | 9.x | 10.x` supported ## Installation diff --git a/composer.json b/composer.json index 9953e10..2584ee5 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ ], "require": { "php": "^7.2|^8.0", - "laravel/framework": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0" + "laravel/framework": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0" }, "require-dev": { "orchestra/testbench": ">=3.8",