Skip to content

Commit 1f9e2b4

Browse files
authored
Merge pull request #142 from hihuangwei/patch-1
support Laravel 10.0
2 parents 4a43d91 + cba4826 commit 1f9e2b4

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,25 @@ 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
os: [ubuntu-latest]
1515
dependency-version: [prefer-stable]
1616
include:
17+
- laravel: 10.*
18+
testbench: 8.*
1719
- laravel: 9.*
1820
testbench: 7.*
1921
- laravel: 8.*
2022
testbench: ^6.23
23+
exclude:
24+
- laravel: 10.*
25+
php: 8.0
2126

2227
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2328

2429
steps:
2530
- name: Checkout code
26-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
2732

2833
- name: Setup PHP
2934
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
"php": "^8.0",
2222
"ext-json": "*",
2323
"guzzlehttp/guzzle": "^6.3|^7.3",
24-
"illuminate/bus": "^8.50|^9.0",
25-
"illuminate/queue": "^8.50|^9.0",
26-
"illuminate/support": "^8.50|^9.0",
24+
"illuminate/bus": "^8.50|^9.0|^10.0",
25+
"illuminate/queue": "^8.50|^9.0|^10.0",
26+
"illuminate/support": "^8.50|^9.0|^10.0",
2727
"spatie/laravel-package-tools": "^1.11"
2828
},
2929
"require-dev": {
@@ -62,4 +62,4 @@
6262
},
6363
"minimum-stability": "dev",
6464
"prefer-stable": true
65-
}
65+
}

0 commit comments

Comments
 (0)