These are some utils I use often in my Symfony projects
Install the bundle in your project by running:
$ composer require demontpx/util-bundleEnable the bundle in your kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = [
// ...
new Demontpx\UtilBundle\DemontpxUtilBundle(),
];
}