Installation
Installation for Magento
CLI Command
composer require pacemaker/component-process-pipelines(1)
bin/magento setup:upgrade(2)
| 1 | Install the Component Pacemaker Process Pipelines using Composer |
| 2 | Register the Modul in Magento |
Installation Standalone
To install Pacemaker Process Pipelines standalone core functionality, only the Pacemaker Process Pipelines component is required.
CLI Command
composer require pacemaker/component-process-pipelines ^1(1)
| 1 | Install the Core Component Pacemaker Process Pipelines using Composer to run it standalone. |
Example
Composer JSON installation file
composer.json
{
"name": "pacemaker/component-process-pipelines",
"type": "metapackage",
"require": {
"php": "~7.2.0||~7.3.0||~7.4.0",
"techdivision/process-pipelines": "^1.7.1",(1)
"techdivision/pacemaker-base": "^1.0.3",(2)
"techdivision/pacemaker-pipelines": "^1.1.6",(3)
"techdivision/pacemaker-pipeline-initializer": "^2.1.2",(4)
"techdivision/pipeline-step-processes": "^1.0.0",(5)
"techdivision/pipeline-step-messages": "^1.0.1",(6)
"techdivision/pacemaker-pipelines-monitor": "^1.1.0"(7)
}
}
| 1 | see Pacemaker Base |
| 2 | see Process Pipelines |
| 3 | see Pacemaker Pipelines |
| 4 | see Pacemaker Pipelines Initializer |
| 5 | see Pipeline Step Messages |
| 6 | see Pipeline Step Processes |
| 7 | see Pacemaker Pipeline Monitor |
|