Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 :(
- Host: GitHub
- URL: https://github.com/fernandocarletti/twitterbooststrapbundle
- Owner: fernandocarletti
- Created: 2012-06-20T21:53:28.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-09-19T21:47:03.000Z (about 12 years ago)
- Last Synced: 2024-10-09T17:55:50.319Z (about 1 month ago)
- Language: JavaScript
- Size: 164 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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