Skip to content

Commit 9b26f4b

Browse files
committed
add laravel 10 support
1 parent caf5c11 commit 9b26f4b

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/run-tests.yml

+7-2
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.*]
16+
php: [8.1, 8.2]
17+
laravel: [9.*, 10.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 9.*
2121
testbench: 7.*
22+
- laravel: 10.*
23+
testbench: 8.*
24+
exclude:
25+
- laravel: 9.*
26+
php: 8.2
2227

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

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@
1818
],
1919
"require": {
2020
"php": "^8.1",
21-
"illuminate/contracts": "^9.0",
21+
"illuminate/contracts": "^9.0|^10.0",
2222
"league/csv": "^9.8",
2323
"livewire/livewire": "^2.10",
2424
"spatie/laravel-package-tools": "^1.9.2"
2525
},
2626
"require-dev": {
2727
"laravel/pint": "^1.0",
28-
"nunomaduro/collision": "^6.0",
28+
"nunomaduro/collision": "^6.0|^7.0",
2929
"nunomaduro/larastan": "^2.0.1",
30-
"orchestra/testbench": "^7.0",
31-
"pestphp/pest": "^1.21",
30+
"orchestra/testbench": "^7.0|^8.0",
31+
"pestphp/pest": "^1.22",
3232
"pestphp/pest-plugin-laravel": "^1.1",
3333
"pestphp/pest-plugin-livewire": "^1.0",
3434
"phpstan/extension-installer": "^1.1",
3535
"phpstan/phpstan-deprecation-rules": "^1.0",
3636
"phpstan/phpstan-phpunit": "^1.0",
37-
"phpunit/phpunit": "^9.5"
37+
"phpunit/phpunit": "^9.5|^10.0"
3838
},
3939
"autoload": {
4040
"files": [

0 commit comments

Comments
 (0)