Skip to content

Commit c50d959

Browse files
authored
Merge pull request #136 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents 6494925 + 128f582 commit c50d959

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,18 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest]
1616
php: [8.2, 8.1, 8.0]
17-
laravel: [9.*, 8.*]
17+
laravel: [9.*, 8.*, 10.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 10.*
21+
testbench: 8.*
2022
- laravel: 9.*
2123
testbench: 7.*
2224
- laravel: 8.*
2325
testbench: ^6.23
26+
exclude:
27+
- laravel: 10.*
28+
php: 8.0
2429

2530
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2631

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/support": "^7.0|^8.0|^9.0",
20+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
2121
"league/flysystem": "^1.0.41|^2.0|^3.0",
2222
"spatie/db-dumper": "^3.3",
2323
"spatie/laravel-package-tools": "^1.6",
2424
"spatie/temporary-directory": "^2.0"
2525
},
2626
"require-dev": {
2727
"mockery/mockery": "^1.4",
28-
"orchestra/testbench": "^5.0|^6.0|^7.0",
28+
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
2929
"pestphp/pest-plugin-laravel": "^1.3",
3030
"phpunit/phpunit": "^9.5"
3131
},
@@ -57,4 +57,4 @@
5757
},
5858
"minimum-stability": "dev",
5959
"prefer-stable": true
60-
}
60+
}

0 commit comments

Comments
 (0)