从bitbucket克隆后的Yii2作曲家更新

时间:2018-06-05 06:50:36

标签: yii2 composer-php bower yii2-advanced-app

所以我从bitbucket克隆了我的Yii2高级项目。它没有供应商文件夹,所以我必须运行composer update来安装所有插件。但是当我这样做时,我得到一个错误:

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

  Problem 1
    - jlorente/yii2-widget-remainingcharacters dev-master requires bower-asset/jquery-remaining-characters ~1.0.0 -> no matching package found.
    - jlorente/yii2-widget-remainingcharacters 1.0.1 requires bower-asset/jquery-remaining-characters ~1.0.0 -> no matching package found.
    - jlorente/yii2-widget-remainingcharacters 1.0.0 requires bower-asset/jquery-remaining-characters ~1.0.0 -> no matching package found.
    - Installation request for jlorente/yii2-widget-remainingcharacters * -> satisfiable by jlorente/yii2-widget-remainingcharacters[1.0.0, 1.0.1, dev-master].

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.
 - It's a private package and you forgot to add a custom repository to find it

Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.

所以我的要求不合适。好。我安装了jquery-remaining-characters ~1.0.0,但错误仍然相同。这种问题已经发生过几次了,我想学习如何处理它。此外,包名中没有拼写错误,我尝试使用stabledev最小稳定性选项。在这种情况下,应该做什么以及作曲家/凉亭包装的问题究竟是什么?

1 个答案:

答案 0 :(得分:1)

您应该使用asset-packagist - 将其存储库添加到composer.json

"repositories": [
    {
        "type": "composer",
        "url": "https://asset-packagist.org"
    }
]

或全球安装fxp/composer-asset-plugin

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