Skip to content

Commit 119e847

Browse files
authored
Merge pull request #131 from ankurk91/laravel-10
add support for laravel 10
2 parents dc6a013 + 053084c commit 119e847

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/run-tests.yml

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

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
test:
@@ -10,13 +10,19 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
php: [8.2, 8.1, 8.0]
13-
laravel: [9.*, 8.*]
13+
laravel: [10.*, 9.*, 8.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
1618
- laravel: 9.*
1719
testbench: 7.*
1820
- laravel: 8.*
1921
testbench: ^6.23
22+
exclude:
23+
- laravel: 10.*
24+
php: 8.0
25+
2026

2127
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2228

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": "^8.0",
2020
"openspout/openspout": "^4.8",
21-
"illuminate/support": "^8.71|^9.0"
21+
"illuminate/support": "^8.71|^9.0|^10.0"
2222
},
2323
"require-dev": {
2424
"pestphp/pest-plugin-laravel": "^1.3",

0 commit comments

Comments
 (0)