Skip to content

Commit 1116930

Browse files
committed
Laravel 9 support
1 parent b7bcdf4 commit 1116930

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@ name: run-tests
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [ main ]
66
pull_request:
7-
branches: [main]
7+
branches: [ main ]
88

99
jobs:
1010
test:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
os: [ubuntu-latest, windows-latest]
16-
php: [8.0]
17-
laravel: [8.*]
18-
stability: [prefer-lowest, prefer-stable]
15+
os: [ ubuntu-latest, windows-latest ]
16+
php: [ 8.0 ]
17+
laravel: [ 8.*, 9.* ]
18+
stability: [ prefer-lowest, prefer-stable ]
1919
include:
20+
- laravel: 9.*
21+
testbench: ^7.0
2022
- laravel: 8.*
2123
testbench: ^6.23
2224

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"php": "^8.0",
2020
"filament/filament": "^2.10",
2121
"filament/forms": "^2.10",
22-
"illuminate/contracts": "^8.73",
22+
"illuminate/contracts": "^8.73|^9.0",
2323
"spatie/laravel-package-tools": "^1.9.2"
2424
},
2525
"require-dev": {
26-
"nunomaduro/collision": "^5.10",
27-
"orchestra/testbench": "^6.22",
26+
"nunomaduro/collision": "^5.10|^6.0",
27+
"orchestra/testbench": "^6.22|^7.0",
2828
"pestphp/pest": "^1.21",
2929
"pestphp/pest-plugin-laravel": "^1.1",
3030
"phpunit/phpunit": "^9.5",

0 commit comments

Comments
 (0)