PHPackages                             jaapmoolenaar.nl/bootstrapper - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. jaapmoolenaar.nl/bootstrapper

AbandonedLibrary[Utility &amp; Helpers](/categories/utility)

jaapmoolenaar.nl/bootstrapper
=============================

Twitter Bootstrap markup generator

5.14(8y ago)0128MITPHPPHP &gt;=5.4.0

Since Oct 12Pushed 8y ago1 watchersCompare

[ Source](https://github.com/JaapMoolenaar/bootstrapper)[ Packagist](https://packagist.org/packages/jaapmoolenaar.nl/bootstrapper)[ RSS](/packages/jaapmoolenaarnl-bootstrapper/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (10)Dependencies (11)Versions (56)Used By (0)

Bootstrapper
============

[](#bootstrapper)

[![Build Status](https://camo.githubusercontent.com/cd06ad115245cf859bdf1726caed0c0efaa1e52a70a56ebcc5accf607486a287/68747470733a2f2f6170692e7472617669732d63692e6f72672f53617473756d652f626f6f7473747261707065722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/Satsume/bootstrapper)[![Latest Stable Version](https://camo.githubusercontent.com/df64eaa33ceec641c40184d74f97a4b6b4dd4da108567aae69e4fc63c3611bc0/68747470733a2f2f706f7365722e707567782e6f72672f6a6161706d6f6f6c656e6161722e6e6c2f626f6f7473747261707065722f762f737461626c65)](https://packagist.org/packages/jaapmoolenaar.nl/bootstrapper)[![Total Downloads](https://camo.githubusercontent.com/ff5555ecc06f6d4b57dc7440c25175537ca69442c6e5adce1d1b9a5253ca7a9b/68747470733a2f2f706f7365722e707567782e6f72672f6a6161706d6f6f6c656e6161722e6e6c2f626f6f7473747261707065722f646f776e6c6f616473)](https://packagist.org/packages/jaapmoolenaar.nl/bootstrapper)[![Latest Unstable Version](https://camo.githubusercontent.com/71beb1b8ac67c2588ca1eb7f6c5ea9df92d487e7613206280c3df0ac7d301714/68747470733a2f2f706f7365722e707567782e6f72672f6a6161706d6f6f6c656e6161722e6e6c2f626f6f7473747261707065722f762f756e737461626c65)](https://packagist.org/packages/jaapmoolenaar.nl/bootstrapper)[![License](https://camo.githubusercontent.com/afdbf23ad44ee96bda411892c4510af3660322ca5b21670a356477293008e00a/68747470733a2f2f706f7365722e707567782e6f72672f6a6161706d6f6f6c656e6161722e6e6c2f626f6f7473747261707065722f6c6963656e7365)](https://packagist.org/packages/jaapmoolenaar.nl/bootstrapper)

Current supported Bootstrap version: 3.3.5

Bootstrapper is a set of classes that allow you to quickly create Twitter Bootstrap 3 style markup.

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

[](#installation)

Add the following to your `composer.json` file :

```
"require": {
    "jaapmoolenaar.nl/bootstrapper": "~5",
},
```

Then register Bootstrapper's service provider with Laravel:

```
'Bootstrapper\BootstrapperServiceProvider',
```

You can then (if you want to) add the following aliases to your `aliases`array in your `config/app.php` file.

```
'Accordion' => 'Bootstrapper\Facades\Accordion',
'Alert' => 'Bootstrapper\Facades\Alert',
'Badge' => 'Bootstrapper\Facades\Badge',
'Breadcrumb' => 'Bootstrapper\Facades\Breadcrumb',
'Button' => 'Bootstrapper\Facades\Button',
'ButtonGroup' => 'Bootstrapper\Facades\ButtonGroup',
'Carousel' => 'Bootstrapper\Facades\Carousel',
'ControlGroup' => 'Bootstrapper\Facades\ControlGroup',
'DropdownButton' => 'Bootstrapper\Facades\DropdownButton',
'Form' => 'Bootstrapper\Facades\Form',
'Helpers' => 'Bootstrapper\Facades\Helpers',
'Icon' => 'Bootstrapper\Facades\Icon',
'InputGroup' => 'Bootstrapper\Facades\InputGroup',
'Image' => 'Bootstrapper\Facades\Image',
'Label' => 'Bootstrapper\Facades\Label',
'MediaObject' => 'Bootstrapper\Facades\MediaObject',
'Modal' => 'Bootstrapper\Facades\Modal',
'Navbar' => 'Bootstrapper\Facades\Navbar',
'Navigation' => 'Bootstrapper\Facades\Navigation',
'Panel' => 'Bootstrapper\Facades\Panel',
'ProgressBar' => 'Bootstrapper\Facades\ProgressBar',
'Tabbable' => 'Bootstrapper\Facades\Tabbable',
'Table' => 'Bootstrapper\Facades\Table',
'Thumbnail' => 'Bootstrapper\Facades\Thumbnail',
```

Including Bootstrap
-------------------

[](#including-bootstrap)

Include the Bootstrap files just like any other css and js files! Download Bootstrap and JQuery from the [Bootstrap site](http://getbootstrap.com), place them in your public folder and then include them like so:

```
{{ HTML::style('path/to/bootstrap.css') }}
{{ HTML::script('path/to/jquery.js') }}
{{ HTML::script('path/to/bootstrap.js') }}
```

Feel free to use a CDN, but bear in mind that you may get unexpected functionality if the version you use isn't the version Bootstrapper currently supports (but open an issue to let us know!).

```

```

If you want to get the latest Bootstrap that Bootstrapper supports, then use the helper function:

```
Helpers::css()
Helpers::js()
```

If you want to stick at a certain version then use

```
php artisan vendor:publish --provider="Bootstrapper\BootstrapperServiceProvider"

```

And update your config file in config/bootstrapper.php

We also have Twitter Bootstrap as a dependency, so you can grab the files from your vendor directory.

Documentation
-------------

[](#documentation)

- [Bootstrapper documentation](http://bootstrapper.eu1.frbit.net/)
- [Twitter Bootstrap documentation](http://getbootstrap.com/)
- [Twitter Bootstrap on Github](https://github.com/twitter/bootstrap)

Contributing
------------

[](#contributing)

Contributing is easy! Just fork the repo, make your changes then send a pull request on GitHub. If your PR is languishing in the queue and nothing seems to be happening, then send Patrick an [email](mailto:pjr0911025@googlemail.com) or a [tweet](http://twitter.com/DrugCrazed).

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity72

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~32 days

Recently: every ~139 days

Total

51

Last Release

3010d ago

Major Versions

3.x-dev → 4.1.02014-01-27

4.1.19 → 5.0.02014-08-26

PHP version history (2 changes)4.1.0PHP &gt;=5.3.0

5.0.0PHP &gt;=5.4.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/41458824d118b160a0698211b9288090a67f27a4a0f87f3a65b96073decf2b3e?d=identicon)[jaapmoolenaar.nl](/maintainers/jaapmoolenaar.nl)

---

Top Contributors

[![PatrickRose](https://avatars.githubusercontent.com/u/1681612?v=4)](https://github.com/PatrickRose "PatrickRose (276 commits)")[![Anahkiasen](https://avatars.githubusercontent.com/u/1321596?v=4)](https://github.com/Anahkiasen "Anahkiasen (240 commits)")[![patricktalmadge](https://avatars.githubusercontent.com/u/115163?v=4)](https://github.com/patricktalmadge "patricktalmadge (102 commits)")[![rmobis](https://avatars.githubusercontent.com/u/2119933?v=4)](https://github.com/rmobis "rmobis (15 commits)")[![anaxamaxan](https://avatars.githubusercontent.com/u/439457?v=4)](https://github.com/anaxamaxan "anaxamaxan (7 commits)")[![marvinschroeder](https://avatars.githubusercontent.com/u/955978?v=4)](https://github.com/marvinschroeder "marvinschroeder (7 commits)")[![EdRands](https://avatars.githubusercontent.com/u/884726?v=4)](https://github.com/EdRands "EdRands (5 commits)")[![MarkVaughn](https://avatars.githubusercontent.com/u/39970?v=4)](https://github.com/MarkVaughn "MarkVaughn (4 commits)")[![tortuetorche](https://avatars.githubusercontent.com/u/5038872?v=4)](https://github.com/tortuetorche "tortuetorche (4 commits)")[![Francismori7](https://avatars.githubusercontent.com/u/520647?v=4)](https://github.com/Francismori7 "Francismori7 (4 commits)")[![gmsantos](https://avatars.githubusercontent.com/u/1991286?v=4)](https://github.com/gmsantos "gmsantos (3 commits)")[![kapv89](https://avatars.githubusercontent.com/u/1023032?v=4)](https://github.com/kapv89 "kapv89 (2 commits)")[![andersao](https://avatars.githubusercontent.com/u/1131667?v=4)](https://github.com/andersao "andersao (2 commits)")[![jguice](https://avatars.githubusercontent.com/u/587350?v=4)](https://github.com/jguice "jguice (2 commits)")[![GrahamCampbell](https://avatars.githubusercontent.com/u/2829600?v=4)](https://github.com/GrahamCampbell "GrahamCampbell (2 commits)")[![Vyze](https://avatars.githubusercontent.com/u/3227077?v=4)](https://github.com/Vyze "Vyze (1 commits)")[![Big-Shark](https://avatars.githubusercontent.com/u/646054?v=4)](https://github.com/Big-Shark "Big-Shark (1 commits)")[![ethaizone](https://avatars.githubusercontent.com/u/1168777?v=4)](https://github.com/ethaizone "ethaizone (1 commits)")[![hongaar](https://avatars.githubusercontent.com/u/205834?v=4)](https://github.com/hongaar "hongaar (1 commits)")[![iccle](https://avatars.githubusercontent.com/u/518938?v=4)](https://github.com/iccle "iccle (1 commits)")

---

Tags

laravelbootstrap

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/jaapmoolenaarnl-bootstrapper/health.svg)

```
[![Health](https://phpackages.com/badges/jaapmoolenaarnl-bootstrapper/health.svg)](https://phpackages.com/packages/jaapmoolenaarnl-bootstrapper)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k14.1M123](/packages/laravel-pulse)[anahkiasen/former

A powerful form builder

1.3k1.4M14](/packages/anahkiasen-former)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9772.3M122](/packages/roots-acorn)[api-platform/laravel

API Platform support for Laravel

59156.3k11](/packages/api-platform-laravel)[flarum/core

Delightfully simple forum software.

201.4M2.2k](/packages/flarum-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
