Skip to content

Commit 70d84f0

Browse files
authored
Merge pull request #93 from njoguamos/Add-Laravel-10.x-Compactibility
Add Laravel 10.x Compatibility
2 parents 3283f6b + 283be98 commit 70d84f0

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,24 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
php: [8.2, 8.1, 8.0]
13-
laravel: [8.*, 9.*]
13+
laravel: [8.*, 9.*, 10.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
1616
- laravel: 8.*
1717
testbench: ^6.23
1818
- laravel: 9.*
1919
testbench: ^7.0
20+
- laravel: 10.*
21+
testbench: ^8.0
22+
exclude:
23+
- laravel: 10.*
24+
php: 8.0
2025

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

2328
steps:
2429
- name: Checkout code
25-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
2631

2732
- name: Setup PHP
2833
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
],
3636
"require": {
3737
"php": "^8.0",
38-
"laravel/framework": "^8.0|^9.0"
38+
"laravel/framework": "^8.0|^9.0|^10.0"
3939
},
4040
"require-dev": {
4141
"mockery/mockery": "^1.4",
42-
"orchestra/testbench": "^6.23|^7.0",
42+
"orchestra/testbench": "^6.23|^7.0|^8.0",
4343
"pestphp/pest": "^1.22",
4444
"pestphp/pest-plugin-laravel": "^1.3"
4545
},
@@ -72,4 +72,4 @@
7272
},
7373
"minimum-stability": "dev",
7474
"prefer-stable": true
75-
}
75+
}

0 commit comments

Comments
 (0)