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 edf8a46 commit 474fb9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes in `sebastian/global-state` are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.

## [3.0.1] - 2020-11-30

### Changed

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

## [3.0.0] - 2019-02-01

### Changed
Expand All @@ -12,5 +18,6 @@ All notable changes in `sebastian/global-state` are documented in this file usin

* This component is no longer supported on PHP 7.0 and PHP 7.1

[3.0.1]: https://github.com/sebastianbergmann/phpunit/compare/3.0.0...3.0.1
[3.0.0]: https://github.com/sebastianbergmann/phpunit/compare/2.0.0...3.0.0

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"sort-packages": true
},
"require": {
"php": "^7.2",
"php": ">=7.2",
"sebastian/object-reflector": "^1.1.1",
"sebastian/recursion-context": "^3.0"
},
Expand Down

0 comments on commit 474fb9e

Please sign in to comment.