appventus / auto-form-fill-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
Symfony AutoFormFillBundle
Package info
github.com/AppVentus/AutoFormFillBundle
Type:symfony-bundle
pkg:composer/appventus/auto-form-fill-bundle
dev-master
2015-01-09 10:48 UTC
Requires
- php: >=5.3.2
- fzaninotto/faker: >=v1.4.0
- symfony/form: ~2.1
- symfony/framework-bundle: ~2.1
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();
}
}