/bootstrap-bundle

Adding Bootstrap from Twitter to your Symfony2 project is now as easy as pie.

Primary LanguageJavaScriptMIT LicenseMIT

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