Skip to content

Commit a792cc6

Browse files
laravel-shiftRobert Allport
andauthored
Laravel 10.x Compatibility (#10)
* Bump dependencies for Laravel 10 * Update GitHub Actions for Laravel 10 --------- Co-authored-by: Robert Allport <[email protected]>
1 parent 1f42c9d commit a792cc6

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.github/workflows/run-tests-laravel-8-9.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,23 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.0, 7.4]
13-
laravel: [8.*, 9.*]
12+
php: [8.0, 7.4, 8.1]
13+
laravel: [8.*, 9.*, 10.*]
1414
dependency-version: [prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
1618
- laravel: 8.*
1719
testbench: 6.*
1820
- laravel: 9.*
1921
testbench: 7.*
2022
exclude:
2123
- laravel: 9.*
22-
php: 7.4
24+
php: 7.4
25+
- laravel: 10.*
26+
php: 8.0
27+
- laravel: 10.*
28+
php: 7.4
2329

2430
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2531

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
],
2020
"require": {
2121
"php": "^7.2 | ^8.0",
22-
"illuminate/config": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0",
23-
"illuminate/container": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0",
24-
"illuminate/contracts": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0",
25-
"illuminate/database": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0"
22+
"illuminate/config": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0",
23+
"illuminate/container": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0",
24+
"illuminate/contracts": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0",
25+
"illuminate/database": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0"
2626
},
2727
"require-dev": {
2828
"orchestra/testbench": ">=3.8",

0 commit comments

Comments
 (0)