Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 1.4 KB

README.md

File metadata and controls

50 lines (37 loc) · 1.4 KB

BraincraftedBootstrapBundle

By Florian Eckerstorfer

Build Status

About

BraincraftedBootstrapBundle is Bootstrap, from Twitter encapsulated in a Symfony2 bundle.

Installation

First you need to add BraincraftedBootstrapBundle to composer.json:

{
   "require": {
        "braincrafted/bootstrap-bundle": "dev-master"
    }
}

and you have to add the bundle to your AppKernel.php:

// app/AppKernel.php
...
class AppKernel extends Kernel
{
    ...
    public function registerBundles()
    {
        $bundles = array(
            ...
            new Braincrafted\BootstrapBundle\BraincraftedBootstrapBundle()
        );
        ...

        return $bundles;
    }
    ...
}

Then you should check out the documentation to find out how you can use BraincraftedBootstrapBundle in your Symfony2 project.

License