An open API service indexing awesome lists of open source software.

https://github.com/nucleos/nucleos-form-extensions

⚙️ This library adds some custom form elements and validation for symfony.
https://github.com/nucleos/nucleos-form-extensions

form hacktoberfest library symfony symfony-bridge validation

Last synced: 3 months ago
JSON representation

⚙️ This library adds some custom form elements and validation for symfony.

Awesome Lists containing this project

README

          

Form Extensions
===============
[![Latest Stable Version](https://poser.pugx.org/nucleos/form-extensions/v/stable)](https://packagist.org/packages/nucleos/form-extensions)
[![Latest Unstable Version](https://poser.pugx.org/nucleos/form-extensions/v/unstable)](https://packagist.org/packages/nucleos/form-extensions)
[![License](https://poser.pugx.org/nucleos/form-extensions/license)](LICENSE.md)

[![Total Downloads](https://poser.pugx.org/nucleos/form-extensions/downloads)](https://packagist.org/packages/nucleos/form-extensions)
[![Monthly Downloads](https://poser.pugx.org/nucleos/form-extensions/d/monthly)](https://packagist.org/packages/nucleos/form-extensions)
[![Daily Downloads](https://poser.pugx.org/nucleos/form-extensions/d/daily)](https://packagist.org/packages/nucleos/form-extensions)

[![Continuous Integration](https://github.com/nucleos/nucleos-form-extensions/actions/workflows/continuous-integration.yml/badge.svg?event=push)](https://github.com/nucleos/nucleos-form-extensions/actions?query=workflow%3A"Continuous+Integration"+event%3Apush)
[![Code Coverage](https://codecov.io/gh/nucleos/nucleos-form-extensions/graph/badge.svg)](https://codecov.io/gh/nucleos/nucleos-form-extensions)

This library adds some custom form elements and validation for symfony.

## Installation

Open a command console, enter your project directory and execute the following command to download the latest stable version of this library:

```
composer require nucleos/form-extensions
```

## Symfony usage

If you want to use this library inside symfony, you can use a bridge.

### Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in `config/bundles.php` file of your project:

```php
// config/bundles.php

return [
// ...
Nucleos\Form\Bridge\Symfony\Bundle\NucleosFormBundle::class => ['all' => true],
];
```

## License

This library is under the [MIT license](LICENSE.md).