Обновление композитора Yii2 после клонирования из bitbucket - PullRequest
0 голосов
/ 05 июня 2018

Итак, я клонировал свой продвинутый проект Yii2 из bitbucket.Это без папки vendor, поэтому мне нужно запустить 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, но ошибка все та же.Подобные проблемы встречаются уже несколько раз, и я хочу научиться справляться с ними.Также в названии пакета нет опечаток, и я попытался использовать опции минимальной стабильности stable и dev.Что должно быть сделано и в чем проблема с пакетами композитора / бауэра в этом случае?

1 Ответ

0 голосов
/ 05 июня 2018

Вы должны либо использовать 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"
...