Skip to content
Snippets Groups Projects
Unverified Commit 31d35ca8 authored by Sebastian Bergmann's avatar Sebastian Bergmann
Browse files

Use >= operator instead of ^ operator for PHP version constraint

parent 4d7a795d
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,12 @@
All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
## [2.0.2] - 2020-11-30
### Changed
* Changed PHP version constraint in `composer.json` from `^7.1` to `>=7.1`
## [2.0.1] - 2018-10-04
### Fixed
......@@ -22,5 +28,6 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
* Initial release
[2.0.2]: https://github.com/sebastianbergmann/comparator/compare/2.0.1...2.0.2
[2.0.1]: https://github.com/sebastianbergmann/comparator/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/sebastianbergmann/comparator/compare/1.0.0...2.0.0
......@@ -10,7 +10,7 @@
}
],
"require": {
"php": "^7.1"
"php": ">=7.1"
},
"autoload": {
"classmap": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment