PHPackages                             javihgil/extra-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. javihgil/extra-bundle

AbandonedArchivedBundle[Utility &amp; Helpers](/categories/utility)

javihgil/extra-bundle
=====================

Utility services and classes for Symfony projects

v1.0.2(8y ago)0173MITPHP

Since Aug 10Pushed 8y ago1 watchersCompare

[ Source](https://github.com/javihgil/extra-bundle)[ Packagist](https://packagist.org/packages/javihgil/extra-bundle)[ RSS](/packages/javihgil-extra-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (3)Dependencies (12)Versions (4)Used By (0)

Extra Bundle
============

[](#extra-bundle)

Utility services and classes for Symfony projects

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

[](#installation)

```
composer require javihgil/extra-bundle ~1.0

```

Configure Bundle
----------------

[](#configure-bundle)

Register the bundle in *app/AppKernel.php*:

```
// app/AppKernel.php
public function registerBundles()
{
    return [
        // ...
        new \Jhg\ExtraBundle\ExtraBundle(),
    ];
}

```

Controller extension
--------------------

[](#controller-extension)

To use the utilities in ExtraController extend your controllers from Jhg\\ExtraBundle\\Controller\\ExtraController instead of Symfony FrameworkBundle one.

```
