bbit/bootstrap-bundle

symfony BBITBootstrapBundle

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:CSS

Type:symfony-bundle

dev-master 2014-03-30 10:44 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:04:21 UTC


README

Will include jquery, bootstrap and font-awsome.

Step 1: Download BBITBootstrapBundle using composer

Add BBITBootstrapBundle in your composer.json:

{
    "require": {
        "bbit/bootstrap-bundle": "dev-master",
    }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update bbit/bootstrap-bundle

Composer will install the bundle to your project's vendor/BBIT directory.

Step 2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new BBIT\BootstrapBundle\BBITBootstrapBundle(),
    );
}

Usage in TWIG template:

{{ insertBootstrap() }}