Skip to content

Commit bfda353

Browse files
committed
Add php 8.4 support
1 parent f65cb0b commit bfda353

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,10 @@ jobs:
1818
- name: Checkout code
1919
uses: actions/checkout@v4
2020

21-
- name: Cache dependencies
22-
uses: actions/cache@v4
23-
with:
24-
path: ~/.composer/cache/files
25-
key: dependencies-php-8.3-illuminate-11.*-composer-${{ hashFiles('composer.json') }}
26-
2721
- name: Setup PHP
2822
uses: shivammathur/setup-php@v2
2923
with:
30-
php-version: 8.3
24+
php-version: 8.4
3125
extensions: dom, libxml, mbstring, zip, pcntl
3226
coverage: xdebug
3327

.github/workflows/tests.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [ 8.1, 8.2, 8.3 ]
19+
php: [ 8.1, 8.2, 8.3, 8.4 ]
2020
illuminate: [ ^10.0, ^11.0 ]
2121
stability: [ prefer-lowest, prefer-stable ]
2222
include:
@@ -27,19 +27,15 @@ jobs:
2727
exclude:
2828
- php: 8.1
2929
illuminate: ^11.0
30+
- php: 8.4
31+
illuminate: ^10.0
3032

3133
name: P${{ matrix.php }} - I${{ matrix.illuminate }} - ${{ matrix.stability }}
3234

3335
steps:
3436
- name: Checkout code
3537
uses: actions/checkout@v4
3638

37-
- name: Cache dependencies
38-
uses: actions/cache@v4
39-
with:
40-
path: ~/.composer/cache/files
41-
key: dependencies-php-${{ matrix.php }}-illuminate-${{ matrix.illuminate }}-composer-${{ hashFiles('composer.json') }}
42-
4339
- name: Setup PHP
4440
uses: shivammathur/setup-php@v2
4541
with:

0 commit comments

Comments
 (0)