php 无法在pimcore中安装数据集线器导出捆绑包

qhhrdooz  于 2023-02-07  发布在  PHP
关注(0)|答案(1)|浏览(110)

我尝试安装data-hub-export-bundle,但它显示此错误。

Could not find a matching version of package pimcore/data-hub-file-export. Check the package spelling, your version constraint and that the package is available in a stability which ma tches your minimum-stability (stable).

按照Pimcore documentation启用并安装进程管理器和数据集线器。
composer.json

{
    "type": "project",
    "license": "GPL-3.0-or-later",
    "config": {
        "optimize-autoloader": true,
        "sort-packages": true,
        "process-timeout": 0
    },
    "require": {
        "basilicom/pimcore-data-quality-bundle": "^2.2",
        "ci-hub/simple-rest-adapter-bundle": "^2.0",
        "elements/process-manager-bundle": "^4.0",
        "pimcore/customer-management-framework-bundle": "^3.3",
        "pimcore/data-hub": "^1.5",
        "pimcore/data-importer": "^1.7",
        "pimcore/pimcore": "^10.0"
    },
    "require-dev": {
        "codeception/codeception": "^4.1.12"
    },
    "suggest": {
        "pimcore/data-hub": "Universal data interface for GraphQL, CSV and other formats"
    },
    "autoload": {
        "psr-4": {
            "App\\": "src/",
            "Pimcore\\Model\\DataObject\\": "var/classes/DataObject"
        }
    },
    "scripts": {
        "post-create-project-cmd": "Pimcore\\Composer::postCreateProject",
        "post-install-cmd": [
            "Pimcore\\Composer::postInstall",
            "@pimcore-scripts"
        ],
        "post-update-cmd": [
            "Pimcore\\Composer::postUpdate",
            "@pimcore-scripts",
            "Pimcore\\Composer::executeMigrationsUp",
            "@pimcore-scripts"
        ],
        "pimcore-scripts": [
            "Pimcore\\Composer::clearCache",
            "Pimcore\\Composer::installAssets"
        ],
        "minimum-stability": "dev",
        "prefer-stable": true
    }
}
ie3xauqp

ie3xauqp1#

我们遇到了同样的问题。
这个问题是由于Pimcore Datahub File Export是一个ENTERPRISE专用的模块引起的。你可以从它页面上的徽章看出。它不适用于Pimcore的“社区”版。

相关问题