Skip to content

Commit 73435f4

Browse files
Use >= operator instead of ^ operator for PHP version constraint
1 parent b07664b commit 73435f4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ChangeLog-8.5.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes of the PHPUnit 8.5 release series are documented in this fil
44

55
## [8.5.12] - 2020-MM-DD
66

7+
### Changed
8+
9+
* Changed PHP version constraint in `composer.json` from `^7.2` to `>=7.2`
10+
711
### Fixed
812

913
* [#4529](https://github.com/sebastianbergmann/phpunit/issues/4529): Debug mode of Xdebug 2 is not disabled for PHPT tests

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"prefer-stable": true,
2323
"require": {
24-
"php": "^7.2",
24+
"php": ">=7.2",
2525
"ext-dom": "*",
2626
"ext-json": "*",
2727
"ext-libxml": "*",

0 commit comments

Comments
 (0)