Skip to content

Commit ae19842

Browse files
authored
Merge pull request #101 from erikn69/patch-4
Laravel 10.x Support
2 parents c4e67c8 + b5388b8 commit ae19842

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/run-tests.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,18 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
php: [8.2, 8.1, 8.0]
12-
laravel: [9.*, 8.*]
12+
laravel: [10.*, 9.*, 8.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 10.*
16+
testbench: 8.*
1517
- laravel: 9.*
1618
testbench: 7.*
1719
- laravel: 8.*
1820
testbench: ^6.23
21+
exclude:
22+
- laravel: 10.*
23+
php: 8.0
1924

2025
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2126

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/database": "^7.0|^8.0|^9.0",
21-
"illuminate/support": "^7.0|^8.0|^9.0",
20+
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
21+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
2222
"spatie/laravel-package-tools": "^1.4.3",
23-
"illuminate/contracts": "^7.0|^8.0|^9.0"
23+
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0"
2424
},
2525
"require-dev": {
2626
"brianium/paratest": "^6.2",
2727
"mockery/mockery": "^1.4",
2828
"nunomaduro/collision": "^5.3|^6.0",
29-
"orchestra/testbench": "^6.15|^7.0",
29+
"orchestra/testbench": "^6.15|^7.0|^8.0",
3030
"pestphp/pest-plugin-laravel": "^1.3",
3131
"phpunit/phpunit": "^9.5.4"
3232
},
@@ -60,4 +60,4 @@
6060
},
6161
"minimum-stability": "dev",
6262
"prefer-stable": true
63-
}
63+
}

0 commit comments

Comments
 (0)