Skip to main content
Version: Next

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:

  1. Install the required dependencies:
composer require pimcore/data-hub-webhooks --with-all-dependencies
  1. 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],
// ...
];
  1. 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.