Skip to main content
Version: Next

Installation

Required Bundles

This bundle depends on two other bundles that need to be installed first:

Installation Process

For Pimcore >= 10.5

To install Pimcore Datahub CI Hub for Pimcore 10.5 or higher, follow the three steps below:

  1. Install the required dependencies:
composer require pimcore/data-hub-ci-hub
  1. Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added:
use Pimcore\Bundle\DataHubCiHubBundle\PimcoreDataHubCiHubBundle;
// ...

return [
// ...
// make sure that the required bundles are added before to that list
// ...
PimcoreDataHubCiHubBundle::class => ['all' => true],
// ...
];
  1. Install the bundle:
bin/console pimcore:bundle:install PimcoreDataHubCiHubBundle

For Older Versions

To install the Datahub CI Hub bundle for older versions of Pimcore, please run the following commands instead:

composer require pimcore/data-hub-ci-hub
bin/console pimcore:bundle:enable PimcoreDataHubCiHubBundle
bin/console pimcore:bundle:install PimcoreDataHubCiHubBundle

Please make sure, that the bundles are loaded in following order:

  1. PimcoreDataHubBundle
  2. PimcoreDataHubSimpleRestBundle
  3. PimcoreDataHubCiHubBundle
  4. Custom Bundles which extend bundles from above

This priority order can be specified as a parameter during bundle enablement or in the Pimcore extension manager.