Home > Software design >  Your requirements could not be resolved to an installable set of packages ,I get this error when I t
Your requirements could not be resolved to an installable set of packages ,I get this error when I t

Time:05-09

Im using laravel 8 and my php version 8.0.12 for details check the photo

the error image

CodePudding user response:

Your software dependencies have an incompatible version conflict.

Try to Run this command:

composer install --ignore-platform-reqs

or

composer update --ignore-platform-reqs

  • Related