Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 428 Bytes

installation.md

File metadata and controls

33 lines (25 loc) · 428 Bytes

Installation

Symfony 2.3.*

Require the bundle in your composer.json file:

{
    "require": {
        "whyte624/mailbox-analyzer-bundle": "~1.0",
    }
}

Register the bundle:

// app/AppKernel.php

public function registerBundles()
{
    return array(
        new Whyte624\MailboxAnalyzerBundle\Whyte624MailboxAnalyzerBundle(),
        // ...
    );
}

Install the bundle:

$ composer update