After update PHP version to 7.4 on Debian 10 i get this error mensagem:
Composer detected issues in your platform: Your Composer dependencies require a PHP version “>= 7.4.0”.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
In addition to what has been mentioned I could suggest the following:
If you don’t get
7.4.0
back, then this means that you might still be using the old PHP version, if this is the case, then you could use the full path to your PHP binary, eg:/usr/bin/php74 /usr/bin/composer install
or you could set the PHP 7.4 to be the default version so that you don’t have to specify the path.composer.lock
file and then runcomposer install
againLet me know how it goes.
Best,
Bobby
Hey @cutelapisdolphin,
This is due to the Composer configuration when you run
composer install
and the conflicts it generates with the Vendor folder.There are several ways to solve it, but one of the simplest is.
Remove the packages you already have installed which includes this configuration from the composer:
Run the command again with this flag: --ignore-platform-reqs:
Hope that helps,
Sergio Turpín