Skip to content

Commit e569588

Browse files
mcassier31fashxp
andauthored
[Docs] enabling process update customer management framework (#456)
* updateEnablingProcess-CustomerManagementFramework * updateEnablingProcess-CustomerManagementFramework * Update README.md --------- Co-authored-by: Christian Fasching <[email protected]>
1 parent 797e483 commit e569588

File tree

1 file changed

+21
-16
lines changed

1 file changed

+21
-16
lines changed

doc/02_Installation/README.md

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,28 @@ This section describes the installation of the Customer Management Framework and
44

55
> Please note that Customer Management Framework requires MariaDB as database. It will not work with default MySQL. MariaDB is used to save [activities](../09_Activities/README.md) with the MariaDB Dynamic Columns feature: https://mariadb.com/kb/en/library/dynamic-columns/
66
7-
## Installation
8-
9-
1) Add dependency for CMF to your `composer.json` and run `composer update`. Alternatively, in Pimcore directory, run `composer require pimcore/customer-management-framework-bundle`.
10-
```json
11-
...
12-
"require": {
13-
...
14-
"pimcore/customer-management-framework-bundle": "^3",
15-
...
16-
}
17-
...
7+
## Installation Process
8+
To install the Customer Management Framework, follow the three steps below:
9+
1. Install the required dependencies:
10+
```bash
11+
composer require pimcore/customer-management-framework-bundle
12+
```
13+
2. Make sure the bundle is enabled in the `config/bundles.php` file. The following lines should be added:
14+
```php
15+
use Pimcore\Bundle\CustomerManagementFrameworkBundle\PimcoreCustomerManagementFrameworkBundle;
16+
use Pimcore\Bundle\ObjectMergerBundle\ObjectMergerBundle;
17+
// ...
18+
return [
19+
// ...
20+
PimcoreCustomerManagementFrameworkBundle::class => ['all' => true],
21+
ObjectMergerBundle::class => ['all' => true],
22+
// ...
23+
];
24+
```
25+
3. Install the bundle:
26+
```bash
27+
bin/console pimcore:bundle:install PimcoreCustomerManagementFrameworkBundle
1828
```
19-
20-
2) Open Pimcore Admin UI, navigate to `Tools` > `Bundles` and activate and install
21-
`PimcoreCustomerManagementFrameworkBundle` and `ObjectMergerBundle`.
22-
23-
![Extension Manager](../img/install.jpg)
2429

2530
The installer does following tasks:
2631
* Install several data object classes.

0 commit comments

Comments
 (0)