Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 539 Bytes

INSTALL.md

File metadata and controls

22 lines (14 loc) · 539 Bytes

Netgen Content Browser & Sylius integration installation instructions

Use Composer

Run the following command to install Netgen Content Browser & Sylius integration:

composer require netgen/content-browser-sylius

Activate the bundles

Activate the Content Browser in your kernel class with all required bundles:

...

$bundles[] = new Netgen\Bundle\ContentBrowserBundle\NetgenContentBrowserBundle();
$bundles[] = new Netgen\Bundle\ContentBrowserSyliusBundle\NetgenContentBrowserSyliusBundle();

return $bundles;