Skip to content

Commit 65cd6a3

Browse files
mtawilbradyrenting
andauthored
Support Laravel 10.x (#4)
* Support Laravel 10.x * Include Laravel 10 in Github workflow --------- Co-authored-by: Brady Renting <dev@bradyrenting.nl>
1 parent afeec1c commit 65cd6a3

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,17 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.1]
17-
laravel: [9.*]
18-
stability: [prefer-lowest, prefer-stable]
16+
php: [8.2, 8.1, 8.0]
17+
laravel: [10.*, 9.*]
18+
stability: [prefer-stable]
1919
include:
20+
- laravel: 10.*
21+
testbench: 8.*
2022
- laravel: 9.*
21-
testbench: ^7.0
23+
testbench: ^7.22
24+
exclude:
25+
- laravel: 10.*
26+
php: 8.0
2227

2328
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2429

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1",
19+
"php": "^8.0",
2020
"filament/filament": "^2.0",
21-
"spatie/laravel-package-tools": "^1.13.5",
22-
"illuminate/contracts": "^9.0"
21+
"spatie/laravel-package-tools": "^1.14",
22+
"illuminate/contracts": "^9.0|^10.0"
2323
},
2424
"require-dev": {
2525
"laravel/pint": "^1.0",
26-
"nunomaduro/collision": "^6.0",
27-
"nunomaduro/larastan": "^2.0.1",
28-
"orchestra/testbench": "^7.0",
26+
"nunomaduro/collision": "^6.0|^7.0",
27+
"nunomaduro/larastan": "^2.0",
28+
"orchestra/testbench": "^7.22|^8.0",
2929
"pestphp/pest": "^1.21",
3030
"pestphp/pest-plugin-laravel": "^1.1",
3131
"pestphp/pest-plugin-livewire": "^1.0",

0 commit comments

Comments
 (0)