Skip to content

Commit 41f52a0

Browse files
committed
Bump deps
1 parent fb4c9ef commit 41f52a0

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/run-tests.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,25 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [8.1, 8.0]
13-
laravel: [9.*, 8.*]
12+
php: [8.2, 8.1, 8.0]
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
2025

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

2328
steps:
2429
- name: Checkout code
25-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
2631

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

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
],
2424
"require": {
2525
"php": "^8.0",
26-
"laravel/framework": "^8.71|^9.0",
27-
"orchestra/testbench": "^6.24|^7.0"
26+
"laravel/framework": "^8.71|^9.0|^10.0",
27+
"orchestra/testbench": "^6.24|^7.0|^8.0"
2828
},
2929
"require-dev": {
3030
"phpunit/phpunit": "^9.4",

0 commit comments

Comments
 (0)