PHPackages                             nowo-tech/ux-link-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/ux-link-bundle

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

nowo-tech/ux-link-bundle
========================

Symfony bundle to generate contact, share, map, and download links with safe URLs, Twig helpers, and extensible providers.

v1.1.0(3w ago)09↓40%MITPHPPHP &gt;=8.2 &lt;8.6CI passing

Since Jul 8Pushed 1mo agoCompare

[ Source](https://github.com/nowo-tech/UxLinkBundle)[ Packagist](https://packagist.org/packages/nowo-tech/ux-link-bundle)[ Docs](https://packagist.org/packages/nowo-tech/ux-link-bundle)[ RSS](/packages/nowo-tech-ux-link-bundle/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (6)Dependencies (55)Versions (10)Used By (0)

UX Link Bundle
==============

[](#ux-link-bundle)

[![CI](https://github.com/nowo-tech/UxLinkBundle/actions/workflows/ci.yml/badge.svg)](https://github.com/nowo-tech/UxLinkBundle/actions/workflows/ci.yml) [![Packagist Version](https://camo.githubusercontent.com/d3177506d4061eb49405b2131297ef863c920069f30ee02f82e1aeea98f1e23b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f776f2d746563682f75782d6c696e6b2d62756e646c652e7376673f7374796c653d666c6174)](https://packagist.org/packages/nowo-tech/ux-link-bundle) [![Packagist Downloads](https://camo.githubusercontent.com/94b9015bb9bbd5c21852d9cc192543d691e503c013ba873d483ee0d03f9eddaa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f776f2d746563682f75782d6c696e6b2d62756e646c652e737667)](https://packagist.org/packages/nowo-tech/ux-link-bundle) [![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE) [![PHP](https://camo.githubusercontent.com/3f99b197569aa2dcfbefff17ecc68d74098e7f929d8b52dc40f3a898f740eae1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e322532422d3737374242343f6c6f676f3d706870)](https://php.net) [![Symfony](https://camo.githubusercontent.com/0701ae1a8855b98dea0f1dc9d9025d6b0f9444a803559dc983614d044176348b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53796d666f6e792d372e34253230253743253230382e30253230253743253230382e312532422d3030303030303f6c6f676f3d73796d666f6e79)](https://symfony.com) [![GitHub stars](https://camo.githubusercontent.com/1b63ba30753a502d54707bb0831b110c88f14830873d22ffd36b58b1cace2840/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6e6f776f2d746563682f75782d6c696e6b2d62756e646c652e7376673f7374796c653d736f6369616c266c6162656c3d53746172)](https://github.com/nowo-tech/UxLinkBundle) [![Coverage](https://camo.githubusercontent.com/cd0704b56f1d56def350b6d0164316307bb2f47834225fd85443b6fb0059bc73/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f7665726167652d3130302532352d627269676874677265656e)](#tests-and-coverage)

> ⭐ **Found this useful?** Install from [Packagist](https://packagist.org/packages/nowo-tech/ux-link-bundle) and give the repo a star on [GitHub](https://github.com/nowo-tech/UxLinkBundle). It helps us maintain and improve the project.

Generate safe, extensible contact, share, map, and download links for Symfony applications.

Installation
------------

[](#installation)

```
composer require nowo-tech/ux-link-bundle
```

Register the bundle (Symfony Flex does this automatically):

```
// config/bundles.php
Nowo\UxLinkBundle\NowoUxLinkBundle::class => ['all' => true],
```

Quick example (PHP)
-------------------

[](#quick-example-php)

```
use Nowo\UxLinkBundle\Contract\LinkFactoryInterface;

$link = $linkFactory->create('contact', 'whatsapp', [
    'recipient' => '+34600111222',
    'message' => 'Hello',
]);
echo $link->getUrl();
```

Quick example (Twig)
--------------------

[](#quick-example-twig)

```
{{ ux_link_url('contact', 'whatsapp', { recipient: '+34600111222', message: 'Hello' }) }}
```

Quick example (Twig Component)
------------------------------

[](#quick-example-twig-component)

```

```

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

[](#documentation)

- [GitHub Actions CI requirements](docs/GITHUB_CI.md)
- [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)

- [Demo with FrankenPHP](docs/DEMO-FRANKENPHP.md) (includes worker mode)

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

[](#version-information)

VersionPHPSymfonyStatus1.0.x&gt;= 8.27.0 – 8.1+SupportedInstall a specific release:

```
composer require nowo-tech/ux-link-bundle:^1.0
```

Demos
-----

[](#demos)

```
make -C demo up-symfony7   # http://localhost:8047
make -C demo up-symfony8   # http://localhost:8048
```

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

[](#tests-and-coverage)

- Tests: PHPUnit (unit + integration)
- PHP: 100%
- TS/JS: N/A
- Python: N/A

```
make test
make test-coverage
```

License
-------

[](#license)

MIT — see [LICENSE](LICENSE).

###  Health Score

43

—

FairBetter than 89% of packages

Maintenance93

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 81.8% 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 ~3 days

Total

9

Last Release

22d 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 (9 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")

---

Tags

phpsymfonybundletwigfrankenphpmapswhatsappshareuxlinkstwig-component

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Rector

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

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

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

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k18.3M433](/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.8M684](/packages/shopware-core)[pimcore/pimcore

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

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

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)

PHPackages © 2026

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