appventus/auto-form-fill-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Symfony AutoFormFillBundle

Installs: 8 553

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 4

Forks: 1

Open Issues: 2

Type:symfony-bundle

dev-master 2015-01-09 10:48 UTC

This package is not auto-updated.

Last update: 2023-07-31 21:09:09 UTC


README

When you are developing, form manual testing is actualy very boring and time consuming. This bundle fill automaticly creation forms in your application.

Installation

Add this bundle to your composer.json file:

{
    "require-dev": {
        "appventus/auto-form-fill-bundle": "dev-master"
    }
}

Register the bundle in app/AppKernel.php:

// app/AppKernel.php
public function registerBundles()
{

    if (in_array($this->getEnvironment(), array('dev'))) {
        $bundles[] = new AppVentus\AutoFormFillBundle\AvAutoFormFillBundle();
    }
}