Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHP Gherkin Parser: v24 is not compatible with v18 of messages #2034

Merged
merged 3 commits into from
Jul 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions gherkin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt

### Fixed

* [PHP] Disallow installation of Messages `18.x` ([#2034](https://github.com/cucumber/common/pull/2034))

## [24.0.0] - 2022-05-31

### Added
Expand Down
4 changes: 2 additions & 2 deletions gherkin/php/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"cucumber/messages": "^18.0||^19.0"
"cucumber/messages": "^19.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand All @@ -29,7 +29,7 @@
"url": "../../messages/php",
"options": {
"versions": {
"cucumber/messages": "18.0.0"
"cucumber/messages": "19.0.0"
}
}
}
Expand Down