rabble/field-type-bundle

A bundle for defining field types to be used dynamically.

dev-master / 1.0.x-dev 2021-07-16 20:08 UTC

This package is auto-updated.

Last update: 2024-04-17 01:48:53 UTC


README

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.

Installation

Install the bundle by running

composer require rabble/field-type-bundle

Add the following class to your config/bundles.php file:

return [
    ...
    Rabble\FieldTypeBundle\RabbleFieldTypeBundle::class => ['all' => true],
]