PHPackages                             tanuki-form/formtagbinder - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. tanuki-form/formtagbinder

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

tanuki-form/formtagbinder
=========================

v1.1.6(2mo ago)051MITPHP

Since Dec 19Pushed 2mo agoCompare

[ Source](https://github.com/tanuki-form/formtagbinder)[ Packagist](https://packagist.org/packages/tanuki-form/formtagbinder)[ Docs](https://github.com/tanuki-form/formtagbinder)[ RSS](/packages/tanuki-form-formtagbinder/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (5)Used By (1)

```
$ composer require tanuki/formtagbinder

```

---

```
$binder = new Tanuki\Utils\FormTagBinder();

echo $binder->text("name");
//

echo $binder->email("email", ["required", "placeholder" => "info@example.com"]);
//

foreach($binder->checkboxes(["a", "b", "c"], "categories") as $l => $cb){
  echo "{$cb} {$l}";
}
//  a
//  b
//  c

echo $binder->textarea("content");
//
```

Bind post data

```
$postdata = [
  "name" => "green spot",
  "email" => "in.green.spot@gmail.com",
  "categories" => ["b", "c"]
];
$binder = new Tanuki\Utils\FormTagBinder($postdata);

echo $binder->text("name");
//

echo $binder->email("email", ["required", "placeholder" => "info@example.com"]);
//

foreach($binder->checkboxes(["a", "b", "c"], "categories") as $l => $cb){
  echo "{$cb} {$l}";
}
//  a
//  b
//  c
```

Methods
-------

[](#methods)

### input

[](#input)

- text($name, $props=\[\])
- email($name, $props=\[\])
- tel($name, $props=\[\])
- number($name, $props=\[\])
- color($name, $props=\[\])
- date($name, $props=\[\])
- datetime($name, $props=\[\])
- hidden($name, $props=\[\])
- month($name, $props=\[\])
- password($name, $props=\[\])
- range($name, $props=\[\])
- search($name, $props=\[\])
- time($name, $props=\[\])
- url($name, $props=\[\])
- week($name, $props=\[\])
- textarea($name, $props=\[\])

### selector

[](#selector)

- select($dataset, $name, $props=\[\])
- radios($dataset, $name)
- checkboxes($dataset, $name)

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance83

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~17 days

Total

4

Last Release

89d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b960901aad8d8784a640337e33f813a8b1cdb88191d0eaf9b0037d47d07ae9b1?d=identicon)[green-spot](/maintainers/green-spot)

---

Top Contributors

[![green-spot](https://avatars.githubusercontent.com/u/97027570?v=4)](https://github.com/green-spot "green-spot (20 commits)")

### Embed Badge

![Health badge](/badges/tanuki-form-formtagbinder/health.svg)

```
[![Health](https://phpackages.com/badges/tanuki-form-formtagbinder/health.svg)](https://phpackages.com/packages/tanuki-form-formtagbinder)
```

###  Alternatives

[luzhuqun/laravel-mqtt-publish

A simple Laravel 5 mqtt publisher

219.8k](/packages/luzhuqun-laravel-mqtt-publish)[agence-adeliom/easy-editor-bundle

A Symfony bundle for EasyAdmin that provide a flexible content editor

1111.0k1](/packages/agence-adeliom-easy-editor-bundle)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
