Skip to content

Commit 0150cfb

Browse files
Use >= operator instead of ^ operator for PHP version constraint
1 parent 3aaaa15 commit 0150cfb

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

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+
## [1.1.4] - 2020-11-30
6+
7+
### Changed
8+
9+
* Changed PHP version constraint in `composer.json` from `^7.2` to `>=7.2`
10+
511
## [1.1.3] - 2019-07-02
612

713
### Fixed
@@ -31,6 +37,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
3137

3238
* Initial release based on [code contributed by Michel Hartmann to PHPUnit](https://github.com/sebastianbergmann/phpunit/pull/3673)
3339

40+
[1.1.4]: https://github.com/sebastianbergmann/type/compare/1.1.3...1.1.4
3441
[1.1.3]: https://github.com/sebastianbergmann/type/compare/1.1.2...1.1.3
3542
[1.1.2]: https://github.com/sebastianbergmann/type/compare/1.1.1...1.1.2
3643
[1.1.1]: https://github.com/sebastianbergmann/type/compare/1.1.0...1.1.1

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"prefer-stable": true,
1818
"require": {
19-
"php": "^7.2"
19+
"php": ">=7.2"
2020
},
2121
"require-dev": {
2222
"phpunit/phpunit": "^8.2"

0 commit comments

Comments
 (0)