0

我收到以下错误:

致命错误:Cake\ElasticSearch\Plugin::bootstrap(Cake\Core\PluginApplicationInterface $app) 的声明必须与 Cake\Core\BasePlugin::bootstrap(Cake\Core\PluginApplicationInterface $app) 兼容:C:\xampp 中的无效\htdocs\my_app_name\vendor\cakephp\elastic-search\src\Plugin.php 在第 33 行

我已经关注了这个https://book.cakephp.org/elasticsearch/2/en/index.html

4

1 回答 1

0

ElasticSearch 插件还不兼容 CakePHP 4,如果你喜欢冒险并且你真的知道你在做什么,那么你可以尝试 4.x 兼容版本的不稳定开发版本:

composer require "cakephp/elastic-search:cake-4.x-dev"

这可能需要相应地更改应用程序文件中minimum-stability设置。composer.json

如果您不想这样做,那么您只需要等到稳定的 CakePHP 4.x 兼容版本发布。

于 2020-01-09T09:21:06.197 回答