demontpx/util-bundle

Various Symfony utils

Maintainers

Package info

github.com/DemonTPx/util-bundle

Type:symfony-bundle

pkg:composer/demontpx/util-bundle

Statistics

Installs: 882

Dependents: 2

Suggesters: 0

Stars: 0

0.6.3 2021-01-06 16:25 UTC

README

These are some utils I use often in my Symfony projects

Installation

Install the bundle in your project by running:

$ composer require demontpx/util-bundle

Enable the bundle in your kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = [
        // ...
        new Demontpx\UtilBundle\DemontpxUtilBundle(),
    ];
}