1
0
Fork 0
mirror of https://github.com/archtechx/virtualcolumn.git synced 2025-12-12 15:54:03 +00:00

Laravel 11 support

This commit is contained in:
Samuel Štancl 2024-01-27 22:48:21 +01:00
parent 89e00fbcd9
commit 5538055ff8
3 changed files with 6 additions and 4 deletions

View file

@ -13,6 +13,8 @@ jobs:
php: 8.0 php: 8.0
- laravel: 10 - laravel: 10
php: 8.1 php: 8.1
- laravel: 11
php: 8.3
name: Tests (PHPUnit) - L${{ matrix.laravel }} name: Tests (PHPUnit) - L${{ matrix.laravel }}

View file

@ -2,7 +2,7 @@
## Installation ## Installation
Supports Laravel 9 and 10. Supports Laravel 9, 10, 11.
``` ```
composer require stancl/virtualcolumn composer require stancl/virtualcolumn

View file

@ -19,11 +19,11 @@
} }
}, },
"require": { "require": {
"illuminate/support": "^9.0|^10.0", "illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0" "illuminate/database": "^9.0|^10.0|^11.0"
}, },
"require-dev": { "require-dev": {
"orchestra/testbench": "^7.0|^8.0" "orchestra/testbench": "^7.0|^8.0|^9.0"
}, },
"minimum-stability": "dev", "minimum-stability": "dev",
"prefer-stable": true "prefer-stable": true