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
Requires
- php: >=5.3.2
- symfony/framework-bundle: ~2.3
This package is not auto-updated.
Last update: 2024-11-09 15:34:12 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() }}