PHPackages                             nowo-tech/tag-input-bundle - 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. [Templating &amp; Views](/categories/templating)
4. /
5. nowo-tech/tag-input-bundle

ActiveSymfony-bundle[Templating &amp; Views](/categories/templating)

nowo-tech/tag-input-bundle
==========================

Symfony Tag FormType with Tagify UI for multi-tag text inputs.

v1.1.0(2w ago)0339MITPHPPHP &gt;=8.1 &lt;8.6CI passing

Since Jul 5Pushed 1w agoCompare

[ Source](https://github.com/nowo-tech/TagInputBundle)[ Packagist](https://packagist.org/packages/nowo-tech/tag-input-bundle)[ Docs](https://github.com/nowo-tech/TagInputBundle)[ GitHub Sponsors](https://github.com/HecFranco)[ RSS](/packages/nowo-tech-tag-input-bundle/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (8)Dependencies (53)Versions (11)Used By (0)

Tag Input Bundle
================

[](#tag-input-bundle)

[![CI](https://github.com/nowo-tech/TagInputBundle/actions/workflows/ci.yml/badge.svg)](https://github.com/nowo-tech/TagInputBundle/actions/workflows/ci.yml) [![Packagist Version](https://camo.githubusercontent.com/2742ca0c1389b34160f831bb75b3c1027d834d114cf8d9e7b065daa0a748a87e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f776f2d746563682f7461672d696e7075742d62756e646c652e7376673f7374796c653d666c6174)](https://packagist.org/packages/nowo-tech/tag-input-bundle) [![Packagist Downloads](https://camo.githubusercontent.com/08227e27c9f973db8efab925f33b3b5187fa31caca845628212fcbb4e0cd2f88/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f776f2d746563682f7461672d696e7075742d62756e646c652e737667)](https://packagist.org/packages/nowo-tech/tag-input-bundle) [![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE) [![PHP](https://camo.githubusercontent.com/8e58b490725ac49cc8e463c473173681b324c9d92d7854275a785db013ca3de7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e312532422d3737374242343f6c6f676f3d706870)](https://php.net) [![Symfony](https://camo.githubusercontent.com/b43d1688d52c63d771fe5f9f56c9120e3a4e9601779936d3dc0a436df1f874c3/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53796d666f6e792d362e30253242253230253743253230372e34253242253230253743253230382e30253230253743253230382e312532422d3030303030303f6c6f676f3d73796d666f6e79)](https://symfony.com) [![GitHub stars](https://camo.githubusercontent.com/099d58ca6309a8c1d406758cdf081ed30191b59c92dd928e2f52b46bd4285a74/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6e6f776f2d746563682f546167496e70757442756e646c652e7376673f7374796c653d736f6369616c266c6162656c3d53746172)](https://github.com/nowo-tech/TagInputBundle) [![Coverage](https://camo.githubusercontent.com/cd0704b56f1d56def350b6d0164316307bb2f47834225fd85443b6fb0059bc73/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f7665726167652d3130302532352d627269676874677265656e)](#tests-and-coverage)

> ⭐ **Found this useful?** [Install from Packagist](https://packagist.org/packages/nowo-tech/tag-input-bundle) · Give it a **star** on [GitHub](https://github.com/nowo-tech/TagInputBundle) so more developers can find it.

Symfony `FormType` for multi-tag text inputs powered by [Tagify](https://github.com/yairEO/tagify).

[![FrankenPHP Friendly Worker Mode](docs/images/frankenphp-friendly.png)](docs/images/frankenphp-friendly.png)

This bundle is **FrankenPHP worker mode friendly**.

Features
--------

[](#features)

- `TagType::class` for keywords, labels, emails, skills, categories, and more.
- Tagify UI on a standard text input with Twig form themes.
- Model value as `array` or comma-separated `string`.
- Whitelist, max tags, pattern validation, duplicates, and dropdown suggestions.
- TypeScript + Vite assets bundling Tagify in `src/Resources/assets`.

Version information
-------------------

[](#version-information)

Current stable release: **v1.0.5** ([changelog](docs/CHANGELOG.md)).

Quick usage
-----------

[](#quick-usage)

```
use Nowo\TagInputBundle\Form\TagType;

$builder->add('tags', TagType::class, [
    'placeholder' => 'Add tags and press Enter',
    'max_tags' => 10,
    'whitelist' => ['php', 'symfony', 'twig'],
    'input_class' => 'form-control',
]);
```

Include the bundle assets in your layout or form template:

```

```

Run `php bin/console assets:install public` after installing the bundle.

The submitted value is an array of strings by default, e.g. `['php', 'symfony']`.

Documentation
-------------

[](#documentation)

- [Installation](docs/INSTALLATION.md)
- [Configuration](docs/CONFIGURATION.md)
- [Usage](docs/USAGE.md)
- [Contributing](docs/CONTRIBUTING.md)
- [Code of Conduct](CODE_OF_CONDUCT.md)
- [Changelog](docs/CHANGELOG.md)
- [Upgrading](docs/UPGRADING.md)
- [Release](docs/RELEASE.md)
- [Security](docs/SECURITY.md)
- [Engram](docs/ENGRAM.md)
- [Spec-driven development](docs/SPEC-DRIVEN-DEVELOPMENT.md)
- [GitHub Spec Kit](docs/SPEC-KIT.md)

### Additional documentation

[](#additional-documentation)

- [GitHub Actions CI requirements](docs/GITHUB_CI.md)
- [Demo notes](docs/DEMO-FRANKENPHP.md)

Tests and coverage
------------------

[](#tests-and-coverage)

- PHP: 100%
- TS/JS: 96%
- Python: N/A

###  Health Score

48

—

FairBetter than 94% of packages

Maintenance97

Actively maintained with recent releases

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 53.7% 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 ~4 days

Total

8

Last Release

18d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e7947bfc3f2ce9574a18a2c60f3d95b5d1b0740e65dc929332c92f1df21f75ab?d=identicon)[HecFranco](/maintainers/HecFranco)

---

Top Contributors

[![HecFranco](https://avatars.githubusercontent.com/u/24323276?v=4)](https://github.com/HecFranco "HecFranco (29 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (19 commits)")[![actions-user](https://avatars.githubusercontent.com/u/65916846?v=4)](https://github.com/actions-user "actions-user (6 commits)")

---

Tags

formfrankenphpphpsymfonysymfony-bundletagifytagstypescriptvitephpsymfonytypescriptfrankenphpvitetagsformSymfony BundleForm Typetagify

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Rector

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/nowo-tech-tag-input-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/nowo-tech-tag-input-bundle/health.svg)](https://phpackages.com/packages/nowo-tech-tag-input-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k18.3M430](/packages/easycorp-easyadmin-bundle)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k6.0M780](/packages/sylius-sylius)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1617.3k16](/packages/2lenet-crudit-bundle)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.8M682](/packages/shopware-core)[contao/core-bundle

Contao Open Source CMS

1301.7M3.1k](/packages/contao-core-bundle)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.9M536](/packages/pimcore-pimcore)

PHPackages © 2026

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