Skip to content

Commit

Permalink
Use >= operator instead of ^ operator for PHP version constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Nov 30, 2020
1 parent b07664b commit 73435f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog-8.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes of the PHPUnit 8.5 release series are documented in this fil

## [8.5.12] - 2020-MM-DD

### Changed

* Changed PHP version constraint in `composer.json` from `^7.2` to `>=7.2`

### Fixed

* [#4529](https://github.com/sebastianbergmann/phpunit/issues/4529): Debug mode of Xdebug 2 is not disabled for PHPT tests
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"prefer-stable": true,
"require": {
"php": "^7.2",
"php": ">=7.2",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
Expand Down

0 comments on commit 73435f4

Please sign in to comment.