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:
- Install the required dependencies:
composer require pimcore/workflow-automation-integration-bundle
- 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],
// ...
];
- Install the bundle:
bin/console pimcore:bundle:install PimcoreWorkflowAutomationIntegrationBundle