746 0 0 0
Last Updated : 2025-04-28 22:22:43
In this snippet I will guide you through the problem when you pull github project
When you pull a github project and use composer install command, sometimes you will get this error message Your requirements could not be resolved to an installable set of packages. So how you can resolve this and what actuallly is the problem
The Problem
Your software dependencies have an incompatible version conflict
The Solution
composer install --ignore-platform-reqs
// OR
composer update --ignore-platform-reqs