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

Laravel 11 support (#17)

This commit is contained in:
Samuel Štancl 2024-01-27 22:49:31 +01:00 committed by GitHub
parent 89e00fbcd9
commit 7371aac2ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 4 deletions

View file

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

View file

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

View file

@ -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