Skip to content

Commit e626fc7

Browse files
authored
[1.x] Laravel v10 Support (#435)
* Update composer.json * Update tests.yml
1 parent 7d60450 commit e626fc7

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,18 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [7.3, 7.4, '8.0', 8.1, 8.2]
20-
laravel: [8, 9]
20+
laravel: [8, 9, 10]
2121
exclude:
2222
- php: 7.3
2323
laravel: 9
24+
- php: 7.3
25+
laravel: 10
2426
- php: 7.4
2527
laravel: 9
28+
- php: 7.4
29+
laravel: 10
30+
- php: '8.0'
31+
laravel: 10
2632

2733
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2834

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"php": "^7.3|^8.0",
1818
"ext-json": "*",
1919
"bacon/bacon-qr-code": "^2.0",
20-
"illuminate/support": "^8.82|^9.0",
20+
"illuminate/support": "^8.82|^9.0|^10.0",
2121
"pragmarx/google2fa": "^7.0|^8.0"
2222
},
2323
"require-dev": {
2424
"mockery/mockery": "^1.0",
25-
"orchestra/testbench": "^6.0|^7.0",
25+
"orchestra/testbench": "^6.0|^7.0|^8.0",
2626
"phpunit/phpunit": "^9.3"
2727
},
2828
"autoload": {

0 commit comments

Comments
 (0)