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.1(1mo ago)04.0k21MITPHP

Since Jul 7Pushed 1mo 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 1mo ago

READMEChangelogDependencies (6)Versions (56)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

54

—

FairBetter than 97% of packages

Maintenance89

Actively maintained with recent releases

Popularity22

Limited adoption so far

Community13

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 ~80 days

Recently: every ~12 days

Total

54

Last Release

52d ago

Major Versions

v5.4 → v6.02024-07-29

v4.15 → v5.52024-09-30

4.x-dev → v5.62024-09-30

v5.6 → v6.12024-10-03

v6.2 → v7.02026-02-05

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

v2.8.0PHP &gt;=5.5.9

### Community

Maintainers

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

---

Top Contributors

[![nyroDev](https://avatars.githubusercontent.com/u/265662?v=4)](https://github.com/nyroDev "nyroDev (591 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

[winzou/state-machine-bundle

Bundle for the very lightweight yet powerful PHP state machine

34010.4M15](/packages/winzou-state-machine-bundle)[wallabag/wallabag

open source self hostable read-it-later web application

12.6k2.2k](/packages/wallabag-wallabag)[stfalcon/tinymce-bundle

This Bundle integrates TinyMCE WYSIWYG editor into a Symfony2 project.

2692.9M24](/packages/stfalcon-tinymce-bundle)[symfony/ai-bundle

Integration bundle for Symfony AI components

30282.3k6](/packages/symfony-ai-bundle)[mapbender/mapbender

Mapbender library

10117.4k5](/packages/mapbender-mapbender)[sylius/inventory-bundle

Flexible inventory management for Symfony applications.

19176.7k4](/packages/sylius-inventory-bundle)

PHPackages © 2026

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