socle/missing-type-bundle

This bundle aims to provide missing form type in Symfony2.

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master 2013-11-14 15:02 UTC

This package is not auto-updated.

Last update: 2024-05-11 14:00:16 UTC


README

This bundle aims to provide missing form type in Symfony2.

Documentation

For now, this bundle provide the following types:

- hidden_boolean: Keep boolean value in hidden field

Installation

Add SocleMissingTypeBundle in your composer.json:

{
    "require": {
        "socle/missing-type-bundle": "dev-master"
    }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update
# OR
$ php composer.phar update socle/missing-type-bundle # to only update the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Socle\Bundle\MissingTypeBundle\SocleMissingTypeBundle(),
    );
}