Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 525 Bytes

INSTALL.md

File metadata and controls

23 lines (15 loc) · 525 Bytes

Netgen Content Browser & eZ Platform installation instructions

Use Composer

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

composer require netgen/content-browser-ezplatform

Activate the bundle

Activate the integration bundle in your kernel class:

...

$bundles[] = new Netgen\Bundle\ContentBrowserBundle\NetgenContentBrowserBundle();
$bundles[] = new Netgen\Bundle\ContentBrowserEzPlatformBundle\NetgenContentBrowserEzPlatformBundle();

return $bundles;