Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

ahmeda's avatar

Your requirements could not be resolved to an installable set of packages.

I just clone my repo to digitalocean and just run composer install and get this error:

Loading composer repositories with package information Installing dependencies (including require-dev) from lock file Your requirements could not be resolved to an installable set of packages.

Problem 1 - Installation request for cknow/laravel-money v5.0.1 -> satisfiable by cknow/laravel-money[v5.0.1]. - cknow/laravel-money v5.0.1 requires ext-intl * -> the requested PHP extension intl is missing from your system.

To enable extensions, verify that they are enabled in your .ini files: - /etc/php/7.4/cli/php.ini - /etc/php/7.4/cli/conf.d/10-mysqlnd.ini - /etc/php/7.4/cli/conf.d/10-opcache.ini

Googled the error and find this:

https://danyal.dk/blog/2018/11/09/laravel-composer-install-your-requirements-could-not-be-resolved-to-an-installable-set-of-packages/

Install what it's say but still get the same error

0 likes
3 replies
tykus's avatar
tykus
Best Answer
Level 104

Your specific problem is with a missing intl extension which was not included in the extensions installed in the blog post; make sure you are installing and enabling the needed intl extension:

sudo apt install php7.4-intl
1 like
ahmeda's avatar

@tykus AM I need all things that said in the blog post ? or just intl?

tykus's avatar

Check the Server Requirements section of the docs for your Laravel version, it will give you the list of extensions needed.

Please or to participate in this conversation.