You need to add the bundle to your app/AppKernel.php.
...
public function registerBundles()
{
$bundles = array(
...
new MandarinMedien\MMCmfContentBundle\MMCmfContentBundle(),
...
);
....
}
...
...
imports:
- ...
- { resource: '@MMCmfContentBundle/Resources/config/config.yml' }
- ...
...
...
mm_cmf_content:
content_nodes:
contentNode:
templates:
- { name: 'default' }
- { name: 'tile' }
myCustomContentNode:
templates:
- { name: 'default' }
...
...
shell:PROJECT_ROOT: cd vendor/mandarinmedien/mmcmfcontentbundle/MandarinMedien/MMCmfContentBundle && bower update && cd ../../../../../ && bin/console as:in --symlink && bin/console assetic:dump
...