Skip to main content
Version: 2024.1

Installation of the Workflow Automation Integration Bundle

info

This bundle is only supported on Pimcore Core Framework 11.

Bundle Installation

To install the Workflow Automation Integration bundle, follow the three steps below:

  1. Install the required dependencies:
composer require pimcore/workflow-automation-integration-bundle
  1. Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added:
use Pimcore\Bundle\WorkflowAutomationIntegrationBundle\PimcoreWorkflowAutomationIntegrationBundle;
// ...
return [
// ...
PimcoreWorkflowAutomationIntegrationBundle::class => ['all' => true],
// ...
];
  1. Install the bundle:
bin/console pimcore:bundle:install PimcoreWorkflowAutomationIntegrationBundle