Skip to content

Commit 6700ae5

Browse files
authored
Laravel v10 Support (#68)
* Update composer.json * Update tests.yml
1 parent 55c703f commit 6700ae5

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: ['8.0', 8.1, 8.2]
20-
laravel: [8, 9]
20+
laravel: [8, 9, 10]
21+
exclude:
22+
- php: '8.0'
23+
laravel: 10
24+
- php: 8.2
25+
laravel: 8
2126

2227
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2328

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
],
1212
"require": {
1313
"php": "^8.0",
14-
"illuminate/notifications": "^8.0|^9.0",
15-
"illuminate/support": "^8.0|^9.0",
14+
"illuminate/notifications": "^8.0|^9.0|^10.0",
15+
"illuminate/support": "^8.0|^9.0|^10.0",
1616
"vonage/client-core": "^3.0"
1717
},
1818
"require-dev": {
1919
"guzzlehttp/guzzle": "^7.2",
2020
"mockery/mockery": "^1.0",
21-
"orchestra/testbench": "^6.0|^7.0"
21+
"orchestra/testbench": "^6.0|^7.0|^8.0"
2222
},
2323
"autoload": {
2424
"psr-4": {

0 commit comments

Comments
 (0)