Skip to content

Commit 108383e

Browse files
committed
Test with Laravel 11
1 parent 039949e commit 108383e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
php-version: ['8.1', '8.2', '8.3']
20-
laravel-version: [^10.0]
20+
laravel-version: [^10.0, ^11.0]
21+
exclude:
22+
- php-version: 8.1
23+
laravel-version: ^11.0
2124
steps:
2225
- name: Checkout
2326
uses: actions/checkout@v4

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
"require": {
3030
"php": "^8.0",
3131
"friendsofphp/php-cs-fixer": "^3.34.1",
32-
"illuminate/support": "^9.34 || ^10.0"
32+
"illuminate/support": "^9.34 || ^10.0 || ^11.0"
3333
},
3434
"require-dev": {
3535
"laravel/framework": "^10.0",
36-
"orchestra/testbench": "^8.0",
36+
"orchestra/testbench": "^8.0 || ^9.0",
3737
"phpunit/phpunit": "^10.4.1"
3838
},
3939
"extra": {

0 commit comments

Comments
 (0)