Skip to content

Commit

Permalink
Laravel 11 support (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
stancl committed Jan 27, 2024
1 parent 89e00fb commit 7371aac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
php: 8.0
- laravel: 10
php: 8.1
- laravel: 11
php: 8.3

name: Tests (PHPUnit) - L${{ matrix.laravel }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Installation

Supports Laravel 9 and 10.
Supports Laravel 9, 10, 11.

```
composer require stancl/virtualcolumn
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7371aac

Please sign in to comment.