Skip to content

Commit f84a3f0

Browse files
Add support for PHP 8.5 (#25)
1 parent f829651 commit f84a3f0

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

.github/workflows/static.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77
jobs:
88
phpstan:
99
name: PHPStan
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111

1212
steps:
1313
- name: Checkout Code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ on:
77
jobs:
88
tests:
99
name: PHP ${{ matrix.php }}
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111

1212
strategy:
1313
matrix:
14-
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
14+
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
1515

1616
steps:
1717
- name: Checkout Code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# CHANGELOG
22

33

4+
## 1.8.0 (UPCOMING)
5+
6+
* Add support for PHP 8.5
7+
8+
49
## 1.7.1 (2025-05-01)
510

611
* Fix size 65536 HybiFrames

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ A simple PHP WebSocket implementation.
99
## Installation
1010

1111
The library can be installed with Composer and is available on Packagist under
12-
[chrome-php/chrome](https://packagist.org/packages/chrome-php/wrench):
12+
[chrome-php/wrench](https://packagist.org/packages/chrome-php/wrench):
1313

1414
```bash
1515
$ composer require chrome-php/wrench
1616
```
1717

18-
PHP 7.4-8.4 are currently supported, only.
18+
PHP 7.4-8.5 are currently supported, only.
1919

2020

2121
## Usage

0 commit comments

Comments
 (0)