appventus / auto-form-fill-bundle
此包已被废弃且不再维护。未建议替代包。
Symfony AutoFormFillBundle
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
在开发过程中,手动测试表单实际上非常无聊且耗时。此包可自动创建您的应用程序中的表单。
安装
将此包添加到您的 composer.json 文件中
{
"require-dev": {
"appventus/auto-form-fill-bundle": "dev-master"
}
}
在 app/AppKernel.php 中注册该包
// app/AppKernel.php
public function registerBundles()
{
if (in_array($this->getEnvironment(), array('dev'))) {
$bundles[] = new AppVentus\AutoFormFillBundle\AvAutoFormFillBundle();
}
}