Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 478 Bytes

installation.md

File metadata and controls

34 lines (25 loc) · 478 Bytes

Installation

Require the bundle in your composer.json file :

{
    "require": {
        "m6web/api-exception-bundle": "~1.0.0",
    }
}

Register the bundle in your kernel :

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        new M6Web\Bundle\ApiExceptionBundle\M6WebApiExceptionBundle(),
    );
}

Then install the bundle :

$ composer update m6web/api-exception-bundle

Next : Usage