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:
- Install the required dependencies:
composer require pimcore/data-hub-ci-hub
- 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],
// ...
];
- 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:
- PimcoreDataHubBundle
- PimcoreDataHubSimpleRestBundle
- PimcoreDataHubCiHubBundle
- 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.