作曲家存储库最低稳定性错误



我正在尝试使用作曲家安装Magento扩展,但无论我尝试什么,我都会收到以下错误。 [无效参数异常]

找不到任何版本的软件包mageworx/module-searchsuiteautocomplete,以满足您的最低稳定性(st 能够(。检查包装拼写或最低稳定性

我的作曲家看起来像这样:

"repositories": [
{
"type": "artifact",
"url": "searchextention"
}
],

文件位于根文件夹上的搜索扩展文件夹中。

扩展名上的作曲家文件:

{
"name": "mageworx/module-searchsuiteautocomplete",
"description": "Search Suite Autocomplete by MageWorx",
"require": {
"magento/framework"      : ">=100.0.0 <102",
"magento/module-catalog" : ">=100.0.0 <103",
"magento/module-search"  : ">=100.0.0 <101"
},
"type": "magento2-module",
"version": "2.1.3",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MageWorx\SearchSuiteAutocomplete\": ""
}
}
}

我该如何解决这个问题?? 我正在使用 PHP 7

在 composer.json 文件中添加/更改一行

"minimum-stability":"dev"

最新更新