diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54f1a71..d16fe76 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: php: 8.0 - laravel: 10 php: 8.1 + - laravel: 11 + php: 8.3 name: Tests (PHPUnit) - L${{ matrix.laravel }} diff --git a/README.md b/README.md index ee5725a..8c223a4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Installation -Supports Laravel 9 and 10. +Supports Laravel 9, 10, 11. ``` composer require stancl/virtualcolumn diff --git a/composer.json b/composer.json index bccaf62..e26d09b 100644 --- a/composer.json +++ b/composer.json @@ -19,11 +19,11 @@ } }, "require": { - "illuminate/support": "^9.0|^10.0", - "illuminate/database": "^9.0|^10.0" + "illuminate/support": "^9.0|^10.0|^11.0", + "illuminate/database": "^9.0|^10.0|^11.0" }, "require-dev": { - "orchestra/testbench": "^7.0|^8.0" + "orchestra/testbench": "^7.0|^8.0|^9.0" }, "minimum-stability": "dev", "prefer-stable": true