PHPackages                             simplethings/form-extra-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. [Templating &amp; Views](/categories/templating)
4. /
5. simplethings/form-extra-bundle

ActiveSymfony-bundle[Templating &amp; Views](/categories/templating)

simplethings/form-extra-bundle
==============================

This bundles provides extra FormType's for Symfony2

v1.1.0(12y ago)10184.0k↓50%26[4 issues](https://github.com/simplethings/SimpleThingsFormExtraBundle/issues)[2 PRs](https://github.com/simplethings/SimpleThingsFormExtraBundle/pulls)MITPHPPHP &gt;=5.3.0CI failing

Since Mar 6Pushed 10y ago6 watchersCompare

[ Source](https://github.com/simplethings/SimpleThingsFormExtraBundle)[ Packagist](https://packagist.org/packages/simplethings/form-extra-bundle)[ RSS](/packages/simplethings-form-extra-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (1)Versions (6)Used By (0)

SimpleThingsFormExtraBundle
---------------------------

[](#simplethingsformextrabundle)

[![Build Status](https://camo.githubusercontent.com/b0bfb8ba83554864fd5c313c3af4e09a8d04ef4e8a9e0cdb6d1d6a4d27e531c6/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f73696d706c657468696e67732f53696d706c655468696e6773466f726d457874726142756e646c652e706e67)](http://travis-ci.org/simplethings/SimpleThingsFormExtraBundle)

This bundle contains additional functionality for Symfony2's Form Component.

Currently this Bundle provides the following:

- RecaptchaFieldType for using Google's reCAPTCHA service.
- ImageType for showing the previously uploaded image
- FileSet for showing a list of previously uploaded files
- FieldTypeExtension for allowing setting `attr` when building a Form.

Current this Bundle **does not** provide the following:

- In depth documentation.
- Unicorns or other fairytale creatures.

Contributors
============

[](#contributors)

Thanks to all who have helped make this bundle awesome. For a list of people who have helped you should visit this page: .

Contributing
============

[](#contributing)

If **you** want to help create a fork of this repository do some coding and send a Pull Request.

Installing
==========

[](#installing)

Fire up a terminal and either clone this repository or add it as a submodule both are shown here by example.

```
$ git clone git://github.com/simplethings/SimpleThingsFormExtraBundle.git vendor/bundles/SimpleThings/FormExtraBundle
```

```
$ git submodule add git://github.com/simplethings/SimpleThingsFormExtraBundle.git vendor/bundles/SimpleThings/FormExtraBundle
```

for symfony 2.0 use the deps file by adding this in it and running php bin/vendors install

```
[FormExtraBundle]
    git=https://github.com/simplethings/SimpleThingsFormExtraBundle.git
    target=bundles/SimpleThings/FormExtraBundle
    version=v0.1
```

or for symfony 2.1 add this to your composer.json and run composer install

```
{
    "require": {
        "simplethings/form-extra-bundle": "1.0.*"
    }
}
```

the enable to the bundle inside your kernel class normally called `AppKernel.php`

```
