neimheadh/bootstrap-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

NeimheadhBootstrapBundle integrates Bootstrap 3 into Symfony 3.1.

Installs: 160

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 3

Type:symfony-bundle

0.2 2016-09-07 19:16 UTC

This package is auto-updated.

Last update: 2021-12-28 08:33:30 UTC


README

Build Status Codecov Total Downloads Latest Stable Version Reference Status

NeimheadhBootstrapBundle helps you to integrate Bootstrap 3 in your Symfony 3 project.

NeimheadhBootstrapBundle implements Twig extensions, configurations, templates to able you to use Bootstrap 3 functionnalities quickly and easily.

Installation

To install NeimheadhBootstrapBundle, open a command console and execute the following command to download the latest stable version:

$ composer require neimheadh/bootstrap-bundle

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Enable

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            // Enable assetic bundle if it's not already done
            new Symfony\Bundle\AsseticBundle\AsseticBundle(),
            // ...
            new Neimheadh\Bundle\BootstrapBundle\NeimheadhBootstrapBundle(),
        );

        // ...
    }

    // ...
}

Also, if you had the assetic entry in your configuration add, you should add NeimheadhBootstrapBundle in the bundles list:

# app/config/config.yml

# ...
assetic:
    # ...
    bundles:
        # ...
        - NeimheadhBootstrapBundle

Documentation

TODO

  • Use configuration in breadcrumb extension.
  • Upgrade breadcrumb building system (auto-filling).
  • Update documentation.