Skip to content

Commit 66ab6fc

Browse files
committed
Added PHP 8.4 to test matrix
1 parent e8802a5 commit 66ab6fc

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.github/workflows/run-stub-tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
os: [ubuntu-22.04, windows-latest]
13-
php: [8.3, 8.2]
13+
php: [8.4, 8.3, 8.2]
1414
laravel: [11.0, 10.2]
15+
exclude:
16+
- php: 8.4
17+
laravel: 10.0
1518

1619
name: Test Stubs ${{ matrix.os }} - P${{ matrix.php }} - L${{ matrix.laravel }}
1720

.github/workflows/run-table-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.3, 8.2]
11+
php: [8.4, 8.3, 8.2]
1212
laravel: [11.0, 10.0]
1313
db: [mysql, postgres, sqlite]
1414
ssr: [true, false]
@@ -21,6 +21,8 @@ jobs:
2121
exclude:
2222
- dependency-version: prefer-lowest
2323
ssr: true
24+
- php: 8.3
25+
ssr: true
2426
- php: 8.2
2527
ssr: true
2628
- laravel: 10.0
@@ -29,6 +31,8 @@ jobs:
2931
ssr: true
3032
- db: postgres
3133
ssr: true
34+
- php: 8.4
35+
laravel: 10.0
3236

3337
name: Test P${{ matrix.php }} - L${{ matrix.laravel }} - DB ${{ matrix.db }} - SSR ${{ matrix.ssr }} - ${{ matrix.dependency-version }}
3438

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.3, 8.2]
11+
php: [8.4, 8.3, 8.2]
1212
laravel: [11.0, 10.0]
1313
ssr: [true, false]
1414
dependency-version: [prefer-lowest, prefer-stable]
@@ -20,8 +20,12 @@ jobs:
2020
exclude:
2121
- ssr: true
2222
dependency-version: prefer-lowest
23+
- ssr: true
24+
php: 8.3
2325
- ssr: true
2426
php: 8.2
27+
- php: 8.4
28+
laravel: 10.0
2529

2630
name: Test P${{ matrix.php }} - L${{ matrix.laravel }} - SSR ${{ matrix.ssr }} - ${{ matrix.dependency-version }}
2731

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.2|^8.3",
19+
"php": "^8.2|^8.3|^8.4",
2020
"illuminate/contracts": "^10.48.2|^11.0.1"
2121
},
2222
"require-dev": {

0 commit comments

Comments
 (0)