PHPackages                             acseo/fast-show-generator-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. acseo/fast-show-generator-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

acseo/fast-show-generator-bundle
================================

A bundle to quickly generate show actions based on annotation or yaml

v2.1(10mo ago)04.5k1PHP

Since Mar 14Pushed 10mo ago11 watchersCompare

[ Source](https://github.com/acseo/FastShowGeneratorBundle)[ Packagist](https://packagist.org/packages/acseo/fast-show-generator-bundle)[ Docs](https://github.com/acseo/FastShowGeneratorBundle)[ RSS](/packages/acseo-fast-show-generator-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (5)Versions (6)Used By (0)

ACSEOFastShowGeneratorBundle
----------------------------

[](#acseofastshowgeneratorbundle)

ACSEOFastShowGeneratorBundle allows to quickly generate show actions based on annotation or yaml This bundle was initiated by Nicolas Kern ([ACSEO](http://www.acseo-conseil.fr)).

**Version**: 2.0 **Compatibility**: Symfony ^5.0 || ^6.0

Installation using Composer
---------------------------

[](#installation-using-composer)

```
$ composer install acseo/fast-show-generator-bundle
```

Composer will install the bundle to your project's `vendor/ACSEO` directory.

How To Use
----------

[](#how-to-use)

#### Annotation

[](#annotation)

In entity :

```
use ACSEO\FastShowGeneratorBundle\Annotations as ACSEOFastShowGeneratorBundle;
```

For each property :

```
* @ACSEOFastShowGenerator\Show(label="My Property 1", show=true, groups={"default"})
```

In controller :

```
$fastShow = $this->get('acseo_fast_show_generator.driver.annotation');

$fastShow->setEntity(new MyEntity());
$fastShow->setGroup('default');
$fastShow->setClassMetadata($em->getClassMetadata("ACSEOMyBundle:MyEntity"));

$fastShowData = $fastShow->getShowableData();
```

#### YAML :

[](#yaml-)

Create the a file in your bundle for each entity :

```
#ACSEO/Bundle/MyBundle/Resources/config/fastshowgenerator/MyEntity.default.fastshowgenerator.yml

ACSEO\Bundle\MyBundle\Entity\MyEntity:
    Columns:
        myProperty:
            label: My Property 1
            show: true
            groups: {"default"}
        myProperty2:
            label: My Property 2
            show: true
            groups: {"default"}
```

In controller :

```
        $fastShow = $this->get('acseo_fast_show_generator.driver.yaml');

        $fastShow->setEntity($entity);
        $fastShow->setGroup('default');
        $fastShow->setClassMetadata($em->getClassMetadata($this->getEntityName()));

        $fastShowData = $fastShow->getShowableData();
```

Available options :
-------------------

[](#available-options-)

```
label : string - optional - if not set, uses the property name capitalized
show : boolean - optional - if not set, value is assumed to be true
groups : array - optional - if not set, group name is "default"

```

Template
--------

[](#template)

Now, in your twig file, something like that :

```

        {% for propertyName, propertyValue in data %}
            {{ propertyName }}{{ propertyValue }}
        {% endfor %}

```

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance54

Moderate activity, may be stable

Popularity23

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 61.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1032 days

Total

5

Last Release

319d ago

Major Versions

v1.0 → v2.02023-07-03

### Community

Maintainers

![](https://www.gravatar.com/avatar/a21f9d389ad9d714e1e84226a4b2def0417c9bfec60ea43c22104a8e93a654da?d=identicon)[npotier](/maintainers/npotier)

![](https://www.gravatar.com/avatar/b3221e7a2a8d891fcaa50426d0e57f09710e5c230e5948ecc465935d0b6df050?d=identicon)[dev-acseo](/maintainers/dev-acseo)

![](https://www.gravatar.com/avatar/ddb744249adc23f3fd6ad315281fe8bc4aa634d6807ccd5ad7a65aac0b2bd376?d=identicon)[romainguerrero](/maintainers/romainguerrero)

![](https://avatars.githubusercontent.com/u/1478783?v=4)[Nicolas Kern](/maintainers/nicolaskern)[@nicolaskern](https://github.com/nicolaskern)

---

Top Contributors

[![nicolaskern](https://avatars.githubusercontent.com/u/1478783?v=4)](https://github.com/nicolaskern "nicolaskern (8 commits)")[![matthieuJonqet](https://avatars.githubusercontent.com/u/138498669?v=4)](https://github.com/matthieuJonqet "matthieuJonqet (2 commits)")[![npotier](https://avatars.githubusercontent.com/u/1151094?v=4)](https://github.com/npotier "npotier (1 commits)")[![romainguerrero](https://avatars.githubusercontent.com/u/13657074?v=4)](https://github.com/romainguerrero "romainguerrero (1 commits)")[![steven-work-space](https://avatars.githubusercontent.com/u/11534517?v=4)](https://github.com/steven-work-space "steven-work-space (1 commits)")

---

Tags

symfonygenerateshow

### Embed Badge

![Health badge](/badges/acseo-fast-show-generator-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/acseo-fast-show-generator-bundle/health.svg)](https://phpackages.com/packages/acseo-fast-show-generator-bundle)
```

###  Alternatives

[pentatrion/vite-bundle

Vite integration for your Symfony app

2755.3M13](/packages/pentatrion-vite-bundle)[pugx/autocompleter-bundle

Add an autocomplete type to forms

93861.6k3](/packages/pugx-autocompleter-bundle)[sineflow/clamav

ClamAV PHP Client for Symfony

10168.5k](/packages/sineflow-clamav)[spomky-labs/pwa-bundle

Progressive Web App Manifest Generator Bundle for Symfony.

6144.4k1](/packages/spomky-labs-pwa-bundle)[netgen/layouts-core

Netgen Layouts enables you to build and manage complex web pages in a simpler way and with less coding. This is the core of Netgen Layouts, its heart and soul.

3689.4k10](/packages/netgen-layouts-core)[netgen/content-browser

Netgen Content Browser is a Symfony bundle that provides an interface which selects items from any kind of backend and returns the IDs of selected items back to the calling code.

14112.1k8](/packages/netgen-content-browser)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
