jmf/entity-rendering-bundle

Entity rendering bundle for Symfony

Maintainers

Package info

github.com/jmfeurprier/entity-rendering-bundle

pkg:composer/jmf/entity-rendering-bundle

Statistics

Installs: 240

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

3.0.0 2026-06-14 13:49 UTC

This package is auto-updated.

Last update: 2026-06-17 06:13:50 UTC


README

Symfony bundle which allows rendering entities in Twig templates.

Installation & Requirements

Install with Composer:

composer require jmf/entity-rendering-bundle

If you have Flex installed, the bundle is then instantly available without any need for initial configuration. If not, complete your config/bundles.php file as indicated below:

<?php

return [
    // ...
    // Other existing bundles.
    // ...
    Jmf\EntityRendering\EntityRenderingBundle::class => ['all' => true],
];