Skip to content

Commit 5ffbecc

Browse files
authored
Merge pull request #72 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents a687409 + e79b799 commit 5ffbecc

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,22 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
php: [8.2, 8.1, 8.0, 7.4, 7.3]
13-
laravel: [9.*, 8.*]
13+
laravel: [9.*, 8.*, 10.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: ^8.0
1618
- laravel: 9.*
1719
testbench: ^7.0
1820
- laravel: 8.*
1921
testbench: ^6.23
2022
exclude:
23+
- laravel: 10.*
24+
php: 8.0
25+
- laravel: 10.*
26+
php: 7.4
27+
- laravel: 10.*
28+
php: 7.3
2129
- laravel: 9.*
2230
php: 7.3
2331
- laravel: 9.*

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
],
1818
"require": {
1919
"php": "^7.3|^8.0",
20-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
20+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
23+
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
2424
"pestphp/pest": "^1.22",
2525
"phpunit/phpunit": "^8.0|^9.0"
2626
},
@@ -52,4 +52,4 @@
5252
},
5353
"minimum-stability": "dev",
5454
"prefer-stable": true
55-
}
55+
}

0 commit comments

Comments
 (0)