Skip to content

Commit b1503ce

Browse files
authored
Merge pull request #56 from markwalet/php-84-support
Add php 8.4 support
2 parents fc93c78 + b3ec560 commit b1503ce

File tree

3 files changed

+7
-14
lines changed

3 files changed

+7
-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:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## [Unreleased](https://github.com/markwalet/laravel-changelog/compare/v1.10.0...master)
44

5+
### Added
6+
- Included PHP 8.4 in test matrix
7+
58
## [v1.10.0 (2024-03-13)](https://github.com/markwalet/laravel-changelog/compare/v1.9.0...v1.10.0)
69

710
### Added

0 commit comments

Comments
 (0)