Skip to content

Commit 5b4c74e

Browse files
committed
Add PHP 8.5
1 parent 73a7708 commit 5b4c74e

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
if: "!contains(github.event.head_commit.message, 'skip ci')"
1212
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }}
1313
runs-on: ${{ matrix.os }}
14-
continue-on-error: ${{ matrix.php-versions >= '8.4' }}
14+
continue-on-error: ${{ matrix.php-versions >= '8.5' }}
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
18+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
1919
os: [ubuntu-latest, windows-latest]
2020

2121
steps:
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Install dependencies
5050
run: >
51-
curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.8.0.sh > xp-run &&
51+
curl -sSL https://github.com/xp-runners/reference/releases/download/v9.2.0/xp-run-9.2.0.sh > xp-run &&
5252
composer install --prefer-dist &&
5353
echo "vendor/autoload.php" > composer.pth
5454

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33

44
## ?.?.? / ????-??-??
55

6+
* Added PHP 8.5 to the test matrix, ensuring forward compatibility
7+
(@thekid)
8+
* Removed deprecated `E_STRICT` mapping from warnings. See these RFCs:
9+
- https://wiki.php.net/rfc/reclassify_e_strict (7.0)
10+
- https://wiki.php.net/rfc/deprecations_php_8_4 (8.4)
11+
(@thekid)
12+
613
## 2.1.0 / 2024-03-28
714

815
* Made `FromDirectory` consistent with other source implementations in

0 commit comments

Comments
 (0)