Skip to content

Commit 7371aac

Browse files
authored
Laravel 11 support (#17)
1 parent 89e00fb commit 7371aac

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
php: 8.0
1414
- laravel: 10
1515
php: 8.1
16+
- laravel: 11
17+
php: 8.3
1618

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Installation
44

5-
Supports Laravel 9 and 10.
5+
Supports Laravel 9, 10, 11.
66

77
```
88
composer require stancl/virtualcolumn

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
}
2020
},
2121
"require": {
22-
"illuminate/support": "^9.0|^10.0",
23-
"illuminate/database": "^9.0|^10.0"
22+
"illuminate/support": "^9.0|^10.0|^11.0",
23+
"illuminate/database": "^9.0|^10.0|^11.0"
2424
},
2525
"require-dev": {
26-
"orchestra/testbench": "^7.0|^8.0"
26+
"orchestra/testbench": "^7.0|^8.0|^9.0"
2727
},
2828
"minimum-stability": "dev",
2929
"prefer-stable": true

0 commit comments

Comments
 (0)