在成功删除egeloen/ckeditor-bundle之后,我在安装FOS/ckeditor-bundle时遇到问题。(我是按照https://github.com/FriendsOfSymfony/FOSCKEditorBundle/blob/HEAD//docs/migration.rst中建议的方式完成的)
输出为:
composer require friendsofsymfony/ckeditor-bundle
Using version ^2.1 for friendsofsymfony/ckeditor-bundle
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- friendsofsymfony/ckeditor-bundle 2.1.0 conflicts with sebastian/exporter[1.2.2].
- friendsofsymfony/ckeditor-bundle 2.1.0 conflicts with sebastian/exporter[1.2.2].
- friendsofsymfony/ckeditor-bundle 2.1.0 conflicts with sebastian/exporter[1.2.2].
- Installation request for friendsofsymfony/ckeditor-bundle ^2.1 -> satisfiable by friendsofsymfony/ckeditor-bundle[2.1.0].
- Installation request for sebastian/exporter == 1.2.2.0 -> satisfiable by sebastian/exporter[1.2.2].
Installation failed, reverting ./composer.json to its original content.我还尝试了:
composer require friendsofsymfony/ckeditor-bundle:1.2.0但是我得到了同样的错误。有没有专门针对symfony 3.4的版本?
发布于 2019-10-29 16:48:59
您的一些其他依赖项可能需要friendsofsymfony/ckeditor-bundle不支持的sebastian/exporter < 2.0。
您可以使用以下命令获取需要sebastian/exporter的包的列表
composer why sebastian/exporter然后,您可以使用它来升级(因此它们需要更新的sebastian/exporter)或删除包,以便能够安装您的包。
https://stackoverflow.com/questions/58603162
复制相似问题