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!
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:
- sudo rm -r vendor
Run the command again with this flag: --ignore-platform-reqs:
- composer install --ignore-platform-reqs
Hope that helps,
Sergio Turpín
Hi there,
In addition to what has been mentioned I could suggest the following:
php -v
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 run composer install againLet me know how it goes.
Best,
Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.