appventus / auto-form-fill-bundle
Symfony AutoFormFillBundle
Installs: 8 804
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 1
Open Issues: 2
Type:symfony-bundle
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();
}
}