composer.json: constrain the php version (>=7.0.0 <7.1)
What is the current behavior?
# composer.json
"require": {
"php": ">=5.4.16",
What is the expected correct behavior?
# composer.json
"require": {
"php": ">=7.0.0 <7.1",
Edited by Fabrice Gangler