Skip to content

Commit 0ac6ecb

Browse files
committed
[TASK] Block installations on unsupported higher PHP versions
We want Composer to be able to figure out which versions of which libraries it can install on which version of PHP. To make this possible, we should only allow installations on PHP versions that we know to work.
1 parent ba3948e commit 0ac6ecb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1515

1616
### Changed
1717

18+
- Block installations on unsupported higher PHP versions (#691)
1819
- Improve performance of Value::parseValue with many delimiters by refactoring to remove array_search() (#413)
1920
- Add visibility to all class/interface constants (#469)
2021

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
],
2525
"require": {
26-
"php": ">=7.2.0",
26+
"php": "^7.2.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
2727
"ext-iconv": "*"
2828
},
2929
"require-dev": {

0 commit comments

Comments
 (0)