rattler/honeypot-bundle

Rattler Honeypot Bundle

安装次数: 19,761

依赖关系: 0

建议者: 0

安全: 0

星星: 4

关注者: 1

分支: 0

开放问题: 0

类型:symfony-bundle

2.0.1 2016-06-15 15:39 UTC

This package is auto-updated.

Last update: 2024-09-11 03:05:45 UTC


README

一个提供非常简单的隐形 HoneyPot 表单类型的 Symfony 扩展包

对于 Symfony 2,请使用版本 1.0。

安装

将扩展包添加到 composer.json 文件中

"require": {
    // ...
    "rattler/honeypot-bundle": "~2.0",
}

启用 RattlerHoneypotBundle

// config/bundles.php

return [
    // ...
    Rattler\HoneypotBundle\RattlerHoneypotBundle::class => ['all' => true],
];

使用方法

将以下内容添加到现有表单中。

$builder->add('text', HoneypotType::class);

字段的名称可以更改为任何内容(通用名称似乎效果更好)。