Installation
info
This bundle is only supported on Pimcore Core Framework 11.
Required Bundles
This bundle depends on Pimcore Datahub bundle. This needs to be installed first.
Installation Process
To install Pimcore Webhooks, follow the three steps below:
- Install the required dependencies:
composer require pimcore/data-hub-webhooks --with-all-dependencies
- Make sure the bundle is enabled in the
config/bundles.php
file. The following lines should be added:
use Pimcore\Bundle\DataHubWebhooksBundle\PimcoreDataHubWebhooksBundle;
// ...
return [
// ...
// make sure PimcoreDataHubBundle is added before to that list
// ...
PimcoreDataHubWebhooksBundle::class => ['all' => true],
// ...
];
- Install the bundle:
bin/console pimcore:bundle:install PimcoreDataHubWebhooksBundle
Bundle Configuration
Symfony Messenger Configuration
Messages are dispatched via pimcore_datahub_webhooks
transport. Please ensure you have workers processing this transport when using the bundle. See Symfony Messenger documentation for details.