diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a5cc93e..f8d415379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt ## [Unreleased] +### Changed +- [PHP] Require PHP 8.2+ in CI and in composer.json. + ## [28.0.0] - 2024-02-15 ### Added - [Python] Added release workflow for releasing to Pypi ([#213](https://github.com/cucumber/gherkin/pull/213)) diff --git a/php/composer.json b/php/composer.json index efb015e53..789ab2ea4 100644 --- a/php/composer.json +++ b/php/composer.json @@ -13,16 +13,16 @@ } }, "require": { - "php": "^8.1", + "php": "^8.2", "ext-mbstring": "*", "cucumber/messages": ">=19.1.4 <=24" }, "require-dev": { - "phpunit/phpunit": "^10.0", - "vimeo/psalm": "5.19.1", + "phpunit/phpunit": "^11.0", + "vimeo/psalm": "^5.22.2", "friendsofphp/php-cs-fixer": "^3.5", "psalm/plugin-phpunit": "^0.18.0", - "nikic/php-parser": "^4.14" + "nikic/php-parser": "^4.16" }, "repositories": [ {