Skip to content

Commit a8c371d

Browse files
authored
Support Laravel 10 (#51)
1 parent 9aecdf3 commit a8c371d

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,21 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
1515
php: [8.2, 8.1, 8.0]
16-
laravel: [9.*]
16+
laravel: [9.*, 10.*]
1717
dependencies: [lowest, stable]
1818
include:
1919
- laravel: 9.*
2020
testbench: ^7.0
21+
- laravel: 10.*
22+
testbench: ^8.0
2123
- php: 8.2
2224
dependencies: lowest
2325
carbon: ^2.62.1
26+
exclude:
27+
- laravel: 10.*
28+
php: 8.0
29+
- laravel: 10.*
30+
os: windows-latest
2431

2532
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependencies }} - ${{ matrix.os }}
2633

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/contracts": "9.*"
20+
"illuminate/contracts": "10.*|9.*"
2121
},
2222
"require-dev": {
2323
"laravel/pint": "^1.2",
2424
"nunomaduro/collision": "^6.0|^5.0",
2525
"nunomaduro/larastan": "^2.0|^1.0",
26-
"orchestra/testbench": "^7.0",
26+
"orchestra/testbench": "^8.0|^7.0",
2727
"pestphp/pest": "^1.21",
2828
"pestphp/pest-plugin-laravel": "^1.1",
2929
"phpstan/extension-installer": "^1.1",

0 commit comments

Comments
 (0)