skip to Main Content

I’m trying to install data-hub-export-bundle but it’s showing this error.

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). 

Composer error

Process Manager and Data Hub are both enabled and installed as per the 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
    }
}

2

Answers


  1. We are experiencing the same issue.

    The problem is caused by Pimcore Datahub File Export being an ENTERPRISE-only module. You can tell by the badge on its page. It’s not available for the "community" edition of Pimcore.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search