Skip to content

Commit bb426d9

Browse files
chore: add support for Laravel 10 (#8)
1 parent 02e3464 commit bb426d9

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/run-tests.yml

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

2528
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2629

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"require": {
1919
"php": "^8.0",
2020
"spatie/laravel-package-tools": "^1.4.3",
21-
"illuminate/contracts": "^8.83|^9.0"
21+
"illuminate/contracts": "^9.0|^10.0"
2222
},
2323
"require-dev": {
2424
"brianium/paratest": "^6.2",
25-
"nunomaduro/collision": "^5.3|^6.0",
26-
"orchestra/testbench": "^6.15|^7.0",
27-
"phpunit/phpunit": "^9.3",
25+
"nunomaduro/collision": "^6.0|^7.0",
26+
"orchestra/testbench": "^7.0|^8.0",
27+
"phpunit/phpunit": "^9.3|^10.0",
2828
"spatie/laravel-ray": "^1.9",
2929
"vimeo/psalm": "^4.4"
3030
},

0 commit comments

Comments
 (0)