I\'m working on a CMS based on Zend Framework 3.0 to manage a DB I with Doctrine. What is my problem when managing packages with composer? Recently, I updated all the packag
To avoid this kind of problems, a good practice is to set the composer config.platform setting:
"config": {
"platform": {
"php": "7.0.23"
}
}
This will tell composer to update packages but only to a version that still supports this PHP version. So typically, this version number will be the version of your production server.