Skip to content

Commit 2cb743d

Browse files
authored
[9.x] Laravel v10 Support (#696)
* Update composer.json * Update tests.yml
1 parent d639186 commit 2cb743d

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
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
- php: 8.2
2733
laravel: 8
2834

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@
1515
],
1616
"require": {
1717
"php": "^7.3|^8.0",
18-
"illuminate/bus": "^8.0|^9.0",
19-
"illuminate/contracts": "^8.0|^9.0",
20-
"illuminate/database": "^8.0|^9.0",
21-
"illuminate/http": "^8.0|^9.0",
22-
"illuminate/pagination": "^8.0|^9.0",
23-
"illuminate/queue": "^8.0|^9.0",
24-
"illuminate/support": "^8.0|^9.0"
18+
"illuminate/bus": "^8.0|^9.0|^10.0",
19+
"illuminate/contracts": "^8.0|^9.0|^10.0",
20+
"illuminate/database": "^8.0|^9.0|^10.0",
21+
"illuminate/http": "^8.0|^9.0|^10.0",
22+
"illuminate/pagination": "^8.0|^9.0|^10.0",
23+
"illuminate/queue": "^8.0|^9.0|^10.0",
24+
"illuminate/support": "^8.0|^9.0|^10.0"
2525
},
2626
"require-dev": {
2727
"meilisearch/meilisearch-php": "^0.19",
2828
"mockery/mockery": "^1.0",
2929
"php-http/guzzle7-adapter": "^1.0",
30-
"orchestra/testbench": "^6.17|^7.0",
30+
"orchestra/testbench": "^6.17|^7.0|^8.0",
3131
"phpunit/phpunit": "^9.3"
3232
},
3333
"autoload": {

0 commit comments

Comments
 (0)