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 3aaaa15 commit 0150cfb
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 are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [1.1.4] - 2020-11-30

### Changed

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

## [1.1.3] - 2019-07-02

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

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

[1.1.4]: https://github.com/sebastianbergmann/type/compare/1.1.3...1.1.4
[1.1.3]: https://github.com/sebastianbergmann/type/compare/1.1.2...1.1.3
[1.1.2]: https://github.com/sebastianbergmann/type/compare/1.1.1...1.1.2
[1.1.1]: https://github.com/sebastianbergmann/type/compare/1.1.0...1.1.1
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"prefer-stable": true,
"require": {
"php": "^7.2"
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.2"
Expand Down

0 comments on commit 0150cfb

Please sign in to comment.