Skip to content

Commit b6e79a1

Browse files
Laravel 10.x Compatibility (#151)
* Bump dependencies for Laravel 10 * Update GitHub Actions for Laravel 10 * wip Co-authored-by: Freek Van der Herten <[email protected]>
1 parent 27f36a5 commit b6e79a1

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,18 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: [8.2, 8.1, 8.0]
13-
laravel: [9.*, 8.*]
13+
laravel: [9.*, 8.*, 10.*]
1414
dependency-version: [prefer-stable]
1515
include:
16+
- laravel: 10.*
17+
testbench: 8.*
1618
- laravel: 9.*
1719
testbench: 7.*
1820
- laravel: 8.*
1921
testbench: ^6.27
22+
exclude:
23+
- laravel: 10.*
24+
php: 8.0
2025

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

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"prefer-stable": true,
2020
"require": {
2121
"php": "^8.0",
22-
"illuminate/support": "^8.0|^9.0",
22+
"illuminate/support": "^8.0|^9.0|^10.0",
2323
"spatie/laravel-webhook-client": "^3.0",
2424
"stripe/stripe-php": "^7.51|^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.4"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)