Skip to content

Commit 14f72dd

Browse files
Use >= operator instead of ^ operator for PHP version constraint
1 parent 720fcc7 commit 14f72dd

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
44

5+
## [3.0.3] - 2020-11-30
6+
7+
### Changed
8+
9+
* Changed PHP version constraint in `composer.json` from `^7.1` to `>=7.1`
10+
511
## [3.0.2] - 2019-02-04
612

713
### Changed
@@ -46,6 +52,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
4652

4753
* This component is no longer supported on PHP 5.6
4854

55+
[3.0.3]: https://github.com/sebastianbergmann/diff/compare/3.0.2...3.0.3
4956
[3.0.2]: https://github.com/sebastianbergmann/diff/compare/3.0.1...3.0.2
5057
[3.0.1]: https://github.com/sebastianbergmann/diff/compare/3.0.0...3.0.1
5158
[3.0.0]: https://github.com/sebastianbergmann/diff/compare/2.0...3.0.0

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^7.1"
18+
"php": ">=7.1"
1919
},
2020
"require-dev": {
2121
"phpunit/phpunit": "^7.5 || ^8.0",

0 commit comments

Comments
 (0)