Skip to content

Commit 33b6ace

Browse files
Merge pull request #6 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents ffe85b5 + 3f31d56 commit 33b6ace

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
php-version: ['8.0', '8.1']
9-
laravel-version: ['^8', '^9']
9+
laravel-version: ['^8', '^9', 10.0]
1010
steps:
1111
- name: Setup PHP
1212
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
],
2020
"require": {
2121
"php": "^8.0.2",
22-
"illuminate/contracts": "^8.0|^9.0",
23-
"illuminate/http": "^8.0|^9.0",
24-
"illuminate/support": "^8.0|^9.0"
22+
"illuminate/contracts": "^8.0|^9.0|^10.0",
23+
"illuminate/http": "^8.0|^9.0|^10.0",
24+
"illuminate/support": "^8.0|^9.0|^10.0"
2525
},
2626
"require-dev": {
27-
"orchestra/testbench": "^6.0|^7.0",
27+
"orchestra/testbench": "^6.0|^7.0|^8.0",
2828
"phpunit/phpunit": "^9.0"
2929
},
3030
"autoload": {
@@ -40,7 +40,6 @@
4040
"scripts": {
4141
"test": "vendor/bin/phpunit",
4242
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
43-
4443
},
4544
"config": {
4645
"sort-packages": true

0 commit comments

Comments
 (0)