Skip to main content
  • Guides & Documentation

Knowledgebase

Featured articles, how-to guides and quick tips.

Composer: Your Requirements Could Not Be Resolved To An Installable Set of Packages

composer install not working?!

Just do this in the project directory (cd /project/directory)

composer dump-autoload

Then immediately:

composer install

So:

cd /project/directory
composer dump-autoload
composer install