Skip to content

Commit 8353dcb

Browse files
authored
Merge pull request #113 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents 8c401d7 + 8a15139 commit 8353dcb

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/run-tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,16 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: [8.0, 8.1, 8.2]
13-
laravel: [9.*, 8.*]
13+
laravel: [9.*, 8.*, 10.*]
1414
stability: [prefer-stable]
1515
exclude:
16+
- php: 8.0
17+
laravel: 10.*
1618
- php: 8.2
1719
laravel: 8.*
1820
include:
21+
- laravel: 10.*
22+
testbench: 8.*
1923
- laravel: 9.*
2024
testbench: 7.*
2125
- laravel: 8.*

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/container": "^6.0|^7.0|^8.0|^9.0",
21-
"illuminate/database": "^6.0|^7.0|^8.0|^9.0",
22-
"illuminate/log": "^6.0|^7.0|^8.0|^9.0",
23-
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0",
24-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
20+
"illuminate/container": "^6.0|^7.0|^8.0|^9.0|^10.0",
21+
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
22+
"illuminate/log": "^6.0|^7.0|^8.0|^9.0|^10.0",
23+
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0",
24+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
2525
"willdurand/email-reply-parser": "^2.8",
2626
"zbateson/mail-mime-parser": "^1.1"
2727
},
2828
"require-dev": {
2929
"laminas/laminas-mail": "^2.13",
3030
"mockery/mockery": "^1.2",
31-
"orchestra/testbench": "^4.0|^5.0|^7.0",
31+
"orchestra/testbench": "^4.0|^5.0|^7.0|^8.0",
3232
"phpunit/phpunit": "^7.0|^8.0|^9.3"
3333
},
3434
"autoload": {

0 commit comments

Comments
 (0)