diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index db04547..70b0964 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -7,11 +7,11 @@ on: jobs: phpstan: name: PHPStan - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a3c11f6..1004551 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,15 +7,15 @@ on: jobs: tests: name: PHP ${{ matrix.php }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: - php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] + php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9db458b..e7892a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # CHANGELOG +## 1.8.0 (UPCOMING) + +* Add support for PHP 8.5 + + ## 1.7.1 (2025-05-01) * Fix size 65536 HybiFrames diff --git a/README.md b/README.md index 5825504..e0f1ac0 100755 --- a/README.md +++ b/README.md @@ -9,13 +9,13 @@ A simple PHP WebSocket implementation. ## Installation The library can be installed with Composer and is available on Packagist under -[chrome-php/chrome](https://packagist.org/packages/chrome-php/wrench): +[chrome-php/wrench](https://packagist.org/packages/chrome-php/wrench): ```bash $ composer require chrome-php/wrench ``` -PHP 7.4-8.4 are currently supported, only. +PHP 7.4-8.5 are currently supported, only. ## Usage