appventus/auto-form-fill-bundle

此包已被废弃且不再维护。未建议替代包。

Symfony AutoFormFillBundle

安装数: 8,724

依赖者: 0

建议者: 0

安全性: 0

星标: 3

关注者: 4

分支: 1

公开问题: 2

类型: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

在开发过程中,手动测试表单实际上非常无聊且耗时。此包可自动创建您的应用程序中的表单。

安装

将此包添加到您的 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();
    }
}