rabble / field-type-bundle
A bundle for defining field types to be used dynamically.
Installs: 148
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.4 || ^8.0
- rabble/admin-bundle: *
- vich/uploader-bundle: ^1.14
This package is auto-updated.
Last update: 2025-03-17 03:50:27 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], ]