Skip to content

Commit 2b511aa

Browse files
authored
[1.x] Laravel v10 Support (#178)
* Update composer.json * Update tests.yml
1 parent 4872299 commit 2b511aa

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

.github/workflows/tests.yml

+9-1
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

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
"ext-json": "*",
2323
"ext-openssl": "*",
2424
"guzzlehttp/guzzle": "^6.5|^7.0",
25-
"illuminate/contracts": "^7.9|^8.0|^9.0",
26-
"illuminate/database": "^7.9|^8.0|^9.0",
27-
"illuminate/http": "^7.9|^8.0|^9.0",
28-
"illuminate/routing": "^7.9|^8.0|^9.0",
29-
"illuminate/support": "^7.9|^8.0|^9.0",
30-
"illuminate/view": "^7.9|^8.0|^9.0",
25+
"illuminate/contracts": "^7.9|^8.0|^9.0|^10.0",
26+
"illuminate/database": "^7.9|^8.0|^9.0|^10.0",
27+
"illuminate/http": "^7.9|^8.0|^9.0|^10.0",
28+
"illuminate/routing": "^7.9|^8.0|^9.0|^10.0",
29+
"illuminate/support": "^7.9|^8.0|^9.0|^10.0",
30+
"illuminate/view": "^7.9|^8.0|^9.0|^10.0",
3131
"moneyphp/money": "^3.2|^4.0",
3232
"nesbot/carbon": "^2.0",
3333
"spatie/url": "^1.3.5|^2.0",
@@ -36,7 +36,7 @@
3636
},
3737
"require-dev": {
3838
"mockery/mockery": "^1.0",
39-
"orchestra/testbench": "^5.0|^6.0|^7.0",
39+
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
4040
"phpunit/phpunit": "^8.0|^9.0"
4141
},
4242
"suggest": {

0 commit comments

Comments
 (0)