Skip to content

Commit 78be9ec

Browse files
committed
chore: allow laravel 10.x
1 parent ed40628 commit 78be9ec

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,19 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [8.1, 8.0]
14+
php: [8.2, 8.1, 8.0]
1515
laravel: [9.*, 8.*]
1616
stability: [prefer-lowest, prefer-stable]
1717
include:
18+
- laravel: 10.*
19+
testbench: 8.*
20+
php: [8.1, 8.2]
1821
- laravel: 9.*
1922
testbench: 7.*
23+
php: [8.0, 8.1, 8.2]
2024
- laravel: 8.*
2125
testbench: ^6.23
26+
php: [8.0, 8.1]
2227

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

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
],
1414
"require": {
1515
"php": "^8.0",
16-
"illuminate/notifications": "^8.0|^9.0",
17-
"illuminate/support": "^8.0|^9.0",
16+
"illuminate/notifications": "^8.0|^9.0|^10.0",
17+
"illuminate/support": "^8.0|^9.0|^10.0",
1818
"minishlink/web-push": "^7.0"
1919
},
2020
"require-dev": {
2121
"mockery/mockery": "~1.0",
22-
"orchestra/testbench": "^6.0|^7.0",
22+
"orchestra/testbench": "^6.0|^7.0|^8.0",
2323
"phpunit/phpunit": "^9.0"
2424
},
2525
"autoload": {
@@ -47,4 +47,4 @@
4747
"scripts": {
4848
"test": "vendor/bin/phpunit"
4949
}
50-
}
50+
}

0 commit comments

Comments
 (0)