From b94df096c423fb51232887d2c23a2b254caa4f86 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 27 Jul 2025 09:36:59 +0200 Subject: [PATCH] [FEATURE] Add support for PHP 8.5 --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 2 ++ composer.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6585fbc5..251e8fc4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] + php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ] steps: - name: Checkout @@ -59,7 +59,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] + php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ] steps: - name: Checkout diff --git a/CHANGELOG.md b/CHANGELOG.md index 72a6cb3b..df98a123 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Please also have a look at our ### Added +- Add support for PHP 8.5 (#1355) + ### Changed ### Deprecated diff --git a/composer.json b/composer.json index d431ad43..4e5c99c5 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ ], "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", "require": { - "php": "^7.2.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", + "php": "^7.2.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", "ext-iconv": "*" }, "require-dev": {