tmsolution/prototype-bundle

Symfony2 bundle for prototype

v1.3 2016-03-23 13:05 UTC

README

by Damian Piela damian.piela@tmsolution.pl

Build Status

Scrutinizer Code Quality Build Status

Installation

To install the bundle, add:

//composer require

"tmsolution/prototype-bundle": "1.1.*"

to your project's composer.json file. Later, enable your bundle in the app's kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Core\PrototypeBundle\CorePrototypeBundle()
    );
}