Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fernandocarletti/twitterbooststrapbundle

Just because the original was deleted and our project depends on that :(
https://github.com/fernandocarletti/twitterbooststrapbundle

Last synced: about 1 month ago
JSON representation

Just because the original was deleted and our project depends on that :(

Awesome Lists containing this project

README

        

ISDev Twitter Bootstrap Bundle
==============================

Description
-----------

Simple and easy to install [Symfony 2](http://symfony.com/) bundle for the implementation of [Twitter Bootstrap](http://twitter.github.com/bootstrap/).

Installation
------------

1. Include repository in your `deps` file:

``` ini
[TwitterBootstrapBundle]
git=git://github.com/isdev/Twitter-Bootstrap-bundle.git
target=/bundles/Isdev/TwitterBootstrapBundle
```

And run the `vendors` script to download the bundle:

``` bash
$ php bin/vendors install
```

2. Add namespace to your `app/autoload.php` file:

``` php
registerNamespaces(array(
// ...
'Isdev' => __DIR__.'/../vendor/bundles',
));
```

3. Register bundle in `app/AppKernel.php` file:

``` php