diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c0e26ca..10d25bc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,11 +14,15 @@ jobs: fail-fast: false matrix: php: [ 8.0, 8.1, 8.2, 8.3 ] - laravel: [ 9, 10 ] + laravel: [ 9, 10, 11 ] stability: [ prefer-lowest, prefer-stable ] exclude: - php: 8.0 laravel: 10 + - php: 8.0 + laravel: 11 + - php: 8.1 + laravel: 11 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} (${{ matrix.stability }}) diff --git a/composer.json b/composer.json index 2e4034a..6cbd96b 100644 --- a/composer.json +++ b/composer.json @@ -17,10 +17,10 @@ ], "require": { "php": "^8.0", - "illuminate/config": "^9.0|^10.0", - "illuminate/container": "^9.0|^10.0", - "illuminate/routing": "^9.0|^10.0", - "illuminate/support": "^9.0|^10.0", + "illuminate/config": "^9.0|^10.0|^11.0", + "illuminate/container": "^9.0|^10.0|^11.0", + "illuminate/routing": "^9.0|^10.0|^11.0", + "illuminate/support": "^9.0|^10.0|^11.0", "jenssegers/optimus": "^1.0" }, "require-dev": {