Skip to content

Commit 1f7c5d6

Browse files
authored
[6.x] Laravel v10 Support (#166)
* Update composer.json * Update tests.yml
1 parent 7745dae commit 1f7c5d6

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,24 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
20-
laravel: [7, 8, 9]
20+
laravel: [7, 8, 9, 10]
2121
exclude:
2222
- php: 7.2
2323
laravel: 8
2424
- php: 7.2
2525
laravel: 9
26+
- php: 7.2
27+
laravel: 10
2628
- php: 7.3
2729
laravel: 9
30+
- php: 7.3
31+
laravel: 10
2832
- php: 7.4
2933
laravel: 9
34+
- php: 7.4
35+
laravel: 10
36+
- php: '8.0'
37+
laravel: 10
3038
- php: 8.1
3139
laravel: 7
3240
- php: 8.2

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"php": "^7.2|^8.0",
1414
"ext-dom": "*",
1515
"ext-json": "*",
16-
"illuminate/contracts": "^7.0|^8.0|^9.0",
17-
"illuminate/database": "^7.0|^8.0|^9.0",
18-
"illuminate/http": "^7.0|^8.0|^9.0",
19-
"illuminate/support": "^7.0|^8.0|^9.0",
20-
"illuminate/testing": "^7.0|^8.0|^9.0",
16+
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0",
17+
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
18+
"illuminate/http": "^7.0|^8.0|^9.0|^10.0",
19+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
20+
"illuminate/testing": "^7.0|^8.0|^9.0|^10.0",
2121
"mockery/mockery": "^1.0",
2222
"phpunit/phpunit": "^8.5|^9.0",
2323
"symfony/console": "^5.0|^6.0",
@@ -27,7 +27,7 @@
2727
"symfony/http-kernel": "^5.0|^6.0"
2828
},
2929
"require-dev": {
30-
"laravel/framework": "^7.0|^8.0|^9.0"
30+
"laravel/framework": "^7.0|^8.0|^9.0|^10.0"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)