PHPackages                             nyrodev/utility-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. nyrodev/utility-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

nyrodev/utility-bundle
======================

Utility Bundle for Symfony, provide many shortcut and useful functionnalities

v7.7(3d ago)14.1k21MITPHP

Since Jul 7Pushed 3d ago1 watchersCompare

[ Source](https://github.com/nyroDev/UtilityBundle)[ Packagist](https://packagist.org/packages/nyrodev/utility-bundle)[ Docs](https://github.com/nyroDev/UtilityBundle)[ RSS](/packages/nyrodev-utility-bundle/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (12)Versions (66)Used By (1)

UtilityBundle
=============

[](#utilitybundle)

Using form twig template
========================

[](#using-form-twig-template)

Add in `config/packages/twig.yaml`

```
twig:
    form_themes:
        - '@NyroDevUtility/Form/nyrodev_form_div_layout.html.twig'
```

Using `TinymceType`
===================

[](#using-tinymcetype)

Add tinymce to your dependancies:

```
composer require tinymce/tinymce

```

Add tinymce depency your webpack encore config:

```
    .addPlugin(new CopyWebpackPlugin({
        patterns: [
            {from: 'vendor/tinymce/tinymce', to: '../tinymce'}
        ]
    }))
```

Translate Tinymce
-----------------

[](#translate-tinymce)

Require tinymce npm dependancy:

```
npm i tinymce-i18n

```

Then copy the language file you need by adding to your webpack encore config:

```
    .addPlugin(new CopyWebpackPlugin({
        patterns: [
            {from: 'vendor/tinymce/tinymce', to: '../tinymce'},
            {from: 'vendor/nyrodev/utility-bundle/Resources/public/js/filemanager', to: '../tinymce/plugins/filemanager'},
            {from: 'node_modules/tinymce-i18n/langs8/fr-FR.js', to: '../tinymce/langs/'},
            {
                from: 'node_modules/tinymce-i18n/langs8/fr-FR.js',
                to: '../tinymce/langs/fr.js',
                transform: (input, filename) => {
                    return input.toString().replace('tinymce.addI18n("fr-FR", {', 'tinymce.addI18n("fr", {');
                }
            }
        ]
    }))
```

Using tinymce browser feature
-----------------------------

[](#using-tinymce-browser-feature)

Add JS and CSS generation to your webpack encore config:

```
    .addEntry('css/admin/tinyBrowser', './vendor/nyrodev/utility-bundle/Resources/public/css/tinyBrowser/index.css')
    .addEntry('js/admin/tinyBrowser', './vendor/nyrodev/utility-bundle/Resources/public/js/tinyBrowser/index.js')
```

Add tinymce plugins depency your webpack encore config:

```
    .addPlugin(new CopyWebpackPlugin({
        patterns: [
            {from: 'vendor/tinymce/tinymce', to: '../tinymce'},
            {from: 'vendor/nyrodev/utility-bundle/Resources/public/js/filemanager', to: '../tinymce/plugins/filemanager'},
            {from: 'node_modules/tinymce-i18n/langs8/fr-FR.js', to: '../tinymce/langs/'},
            {
                from: 'node_modules/tinymce-i18n/langs8/fr-FR.js',
                to: '../tinymce/langs/fr.js',
                transform: (input, filename) => {
                    return input.toString().replace('tinymce.addI18n("fr-FR", {', 'tinymce.addI18n("fr", {');
                }
            }
        ]
    }))
```

Create a route for the browser page, in `config/routes/browser.yaml`:
**Be sure to protect this route behind a security firewall!**

```
tiny_browser:
    path: "%adminPrefix%/tinyBrowser/{type}/{dir}"
    controller: NyroDev\UtilityBundle\Controller\TinymceController::browserAction
    defaults:
        dir: null
    requirements:
        dir: '.+'
```

If you want to enable on every TinymceType by default:

```
nyro_dev_utility:
    browser:
        defaultEnable: true
        defaultRoute: 'tiny_browser'
        allowAddDir: true
```

Using resize assets URL
-----------------------

[](#using-resize-assets-url)

Simply import this in your `config/routes/nyrodev.yaml`:

```
nyrodev_assets:
    resource: "@NyroDevUtilityBundle/Resources/config/routingAssets.yaml"
```

Then you can use the `nyrodev_assets_resize` route.

###  Health Score

57

—

FairBetter than 98% of packages

Maintenance99

Actively maintained with recent releases

Popularity24

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 99.2% 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 ~69 days

Recently: every ~4 days

Total

64

Last Release

3d ago

Major Versions

v5.6 → v6.12024-10-03

v6.2 → v7.02026-02-05

v5.7 → v7.22026-04-01

5.x-dev → 6.x-dev2026-04-03

v4.18 → v7.32026-06-13

PHP version history (2 changes)1.0.0PHP &gt;=5.3.0

v2.8.0PHP &gt;=5.5.9

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/265662?v=4)[Nyro](/maintainers/nyroDev)[@nyroDev](https://github.com/nyroDev)

---

Top Contributors

[![nyroDev](https://avatars.githubusercontent.com/u/265662?v=4)](https://github.com/nyroDev "nyroDev (605 commits)")[![roptch](https://avatars.githubusercontent.com/u/3384280?v=4)](https://github.com/roptch "roptch (5 commits)")

### Embed Badge

![Health badge](/badges/nyrodev-utility-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/nyrodev-utility-bundle/health.svg)](https://phpackages.com/packages/nyrodev-utility-bundle)
```

###  Alternatives

[pimcore/pimcore

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

3.8k3.8M508](/packages/pimcore-pimcore)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.1k17.8k](/packages/prestashop-prestashop)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1189.8k](/packages/rcsofttech-audit-trail-bundle)[mapbender/mapbender

Mapbender library

10418.3k8](/packages/mapbender-mapbender)[chameleon-system/chameleon-base

The Chameleon System core.

1028.6k5](/packages/chameleon-system-chameleon-base)

PHPackages © 2026

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