This bundle provides a way to create field types to be used dynamically in Symfony forms. Also included are value resolvers which are objects that transform a value from a field type to a human-friendly format.
Install the bundle by running
composer require rabble/field-type-bundleAdd the following class to your config/bundles.php file:
return [
...
Rabble\FieldTypeBundle\RabbleFieldTypeBundle::class => ['all' => true],
]