【发布时间】:2018-09-27 17:27:48
【问题描述】:
我目前正在做一个使用 yii2 框架的项目。我想尝试在我的项目中使用 bootstrap 4.0,并将"yiisoft/yii2-bootstrap": "~2.1.0@dev" 添加到我的composer.json 文件并运行composer update。
这成功地在项目中安装了 bootstrap 4.0.0,但是当我开始浏览我的项目以查看受影响的内容时,我意识到 yii\bootstrap\Modal 组件无法正常工作。
因此,我想将我的项目恢复为使用引导程序 3,并将我在 composer.json 文件中的条目更改为 "yiisoft/yii2-bootstrap": "~2.0.0" 并执行了 composer update,但出现以下错误
Your requirements could not be resolved to an installable set of packages.
Problem 1
- yiisoft/yii2-bootstrap 2.0.8 requires bower-asset/bootstrap 3.3.* | 3.2.* | 3.1.* -> no matching package found.
- yiisoft/yii2-bootstrap 2.0.7 requires bower-asset/bootstrap 3.3.* | 3.2.* | 3.1.* -> no matching package found.
- yiisoft/yii2-bootstrap 2.0.6 requires bower-asset/bootstrap 3.3.* | 3.2.* | 3.1.* -> no matching package found.
- yiisoft/yii2-bootstrap 2.0.5 requires bower-asset/bootstrap 3.3.* | 3.2.* | 3.1.* -> no matching package found.
- yiisoft/yii2-bootstrap 2.0.4 requires bower-asset/bootstrap 3.3.* | 3.2.* | 3.1.* -> no matching package found.
- yiisoft/yii2-bootstrap 2.0.3 requires bower-asset/bootstrap 3.3.* | 3.2.* | 3.1.* -> no matching package found.
- yiisoft/yii2-bootstrap 2.0.2 requires bower-asset/bootstrap 3.3.* | 3.2.* | 3.1.* -> no matching package found.
- yiisoft/yii2-bootstrap 2.0.1 requires bower-asset/bootstrap 3.3.* | 3.2.* | 3.1.* -> no matching package found.
- yiisoft/yii2-bootstrap 2.0.0 requires bower-asset/bootstrap 3.2.* | 3.1.* -> no matching package found.
- Installation request for yiisoft/yii2-bootstrap ~2.0.0 -> satisfiable by yiisoft/yii2-bootstrap[2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.0.5, 2.0.6, 2.0.7, 2.0.8].
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.
我做错了什么还是有其他方法可以降级回引导程序 3?
感谢您提出的任何建议。
【问题讨论】:
-
尝试
composer remove yiisoft/yii2-bootstrap,然后重新安装
标签: twitter-bootstrap yii2 composer-php