I have a project on Yii, for which I am trying to install dependencies using the command

composer install 

But I get an 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 yiisoft/yii2-composer 2.0.3 -> satisfiable by yiisoft/yii2-composer[2.0.3]. - yiisoft/yii2-composer 2.0.3 requires composer-plugin-api 1.0.0 -> no matching package found. Problem 2 - yiisoft/yii2-composer 2.0.3 requires composer-plugin-api 1.0.0 -> no matching package found. - yiisoft/yii2 2.0.6 requires yiisoft/yii2-composer * -> satisfiable by yiisoft/yii2-composer[2.0.3]. - Installation request for yiisoft/yii2 2.0.6 -> satisfiable by yiisoft/yii2[2.0.6]. Potential causes: - A typo in the package name - The package is not available in a stable-enough version according to your minimum-stability setting see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details. Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems. 

How to fix this error?

Team

 composer global require "fxp/composer-asset-plugin:~1.2" 

performed

    1 answer 1

    Solved this problem by executing the composer update command instead of the composer install command.