Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 335 Bytes

installation.md

File metadata and controls

21 lines (16 loc) · 335 Bytes

Installation

Require the bundle in your composer.json file:

$ composer require egeloen/base64-file-bundle

Register the bundle in your AppKernel:

// app/AppKernel.php

public function registerBundles()
{
    return array(
        new Ivory\Base64FileBundle\IvoryBase64FileBundle(),
        // ...
    );
}