PHPackages                             itlized/twbs - 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. [Framework](/categories/framework)
4. /
5. itlized/twbs

ActiveLibrary[Framework](/categories/framework)

itlized/twbs
============

Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.

v3.0.0(12y ago)020Apache-2.0JavaScript

Since Dec 8Pushed 12y ago1 watchersCompare

[ Source](https://github.com/ITLized/twbs)[ Packagist](https://packagist.org/packages/itlized/twbs)[ Docs](http://getbootstrap.com)[ RSS](/packages/itlized-twbs/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (11)Used By (0)

[Bootstrap](http://getbootstrap.com) [![Build Status](https://camo.githubusercontent.com/3d5d86c8f349470797c96893b6990bc4d58e578b8171068d1474f1106abaf612/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f747762732f626f6f7473747261702e706e67)](http://travis-ci.org/twbs/bootstrap) [![devDependency Status](https://camo.githubusercontent.com/e37dea9a6a60349c13512ea8aaa6fa49fb3ff1c24cc8e887baa9701c66f98e4b/68747470733a2f2f64617669642d646d2e6f72672f747762732f626f6f7473747261702f6465762d7374617475732e706e67)](https://david-dm.org/twbs/bootstrap#info=devDependencies)
=============================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#bootstrap--)

Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat).

To get started, check out !

Quick start
-----------

[](#quick-start)

Three quick start options are available:

- [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.0.2.zip).
- Clone the repo: `git clone https://github.com/twbs/bootstrap.git`.
- Install with [Bower](http://bower.io): `bower install bootstrap`.

Read the [Getting Started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.

### What's included

[](#whats-included)

Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:

```
bootstrap/
├── css/
│   ├── bootstrap.css
│   ├── bootstrap.min.css
│   ├── bootstrap-theme.css
│   └── bootstrap-theme.min.css
├── js/
│   ├── bootstrap.js
│   └── bootstrap.min.js
└── fonts/
    ├── glyphicons-halflings-regular.eot
    ├── glyphicons-halflings-regular.svg
    ├── glyphicons-halflings-regular.ttf
    └── glyphicons-halflings-regular.woff

```

We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). Fonts from Glyphicons are included, as is the optional Bootstrap theme.

Bugs and feature requests
-------------------------

[](#bugs-and-feature-requests)

Have a bug or a feature request? [Please open a new issue](https://github.com/twbs/bootstrap/issues). Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/).

You may use [this JS Bin](http://jsbin.com/aKiCIDO/1/edit) as a template for your bug reports.

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

[](#documentation)

Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at . The docs may also be run locally.

### Running documentation locally

[](#running-documentation-locally)

1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) (requires v1.x).
2. From the root `/bootstrap` directory, run `jekyll serve` in the command line.

- **Windows users:** run `chcp 65001` first to change the command prompt's character encoding ([code page](http://en.wikipedia.org/wiki/Windows_code_page)) to UTF-8 so Jekyll runs without errors.

3. Open  in your browser, and voilà.

Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/).

### Documentation for previous releases

[](#documentation-for-previous-releases)

Documentation for v2.3.2 has been made available for the time being at  while folks transition to Bootstrap 3.

[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.

Compiling CSS and JavaScript
----------------------------

[](#compiling-css-and-javascript)

Bootstrap uses [Grunt](http://gruntjs.com/) with convenient methods for working with the framework. It's how we compile our code, run tests, and more. To use it, install the required dependencies as directed and then run some Grunt commands.

### Install Grunt

[](#install-grunt)

From the command line:

1. Install `grunt-cli` globally with `npm install -g grunt-cli`.
2. Navigate to the root `/bootstrap` directory, then run `npm install`. npm will look at [package.json](package.json) and automatically install the necessary local dependencies listed there.

When completed, you'll be able to run the various Grunt commands provided from the command line.

**Unfamiliar with `npm`? Don't have node installed?** That's a-okay. npm stands for [node packaged modules](http://npmjs.org/) and is a way to manage development dependencies through node.js. [Download and install node.js](http://nodejs.org/download/) before proceeding.

### Available Grunt commands

[](#available-grunt-commands)

#### Build - `grunt`

[](#build---grunt)

Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [recess](http://twitter.github.io/recess/) and [UglifyJS](http://lisperator.net/uglifyjs/).**

#### Only compile CSS and JavaScript - `grunt dist`

[](#only-compile-css-and-javascript---grunt-dist)

`grunt dist` creates the `/dist` directory with compiled files. **Uses [recess](http://twitter.github.io/recess/) and [UglifyJS](http://lisperator.net/uglifyjs/).**

#### Tests - `grunt test`

[](#tests---grunt-test)

Runs [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI).

#### Watch - `grunt watch`

[](#watch---grunt-watch)

This is a convenience method for watching just Less files and automatically building them whenever you save.

### Troubleshooting dependencies

[](#troubleshooting-dependencies)

Should you encounter problems with installing dependencies or running Grunt commands, uninstall all previous dependency versions (global and local). Then, rerun `npm install`.

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

[](#contributing)

Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.

More over, if your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the [Code Guide](http://github.com/mdo/code-guide), maintained by [Mark Otto](http://github.com/mdo).

Editor preferences are available in the [editor config](.editorconfig) for easy use in common text editors. Read more and download plugins at .

With v3.1, we're moving from the Apache 2 to the MIT license for the Bootstrap code (not the docs). Please see the [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md) for more information.

Community
---------

[](#community)

Keep track of development and community news.

- Follow [@twbootstrap on Twitter](http://twitter.com/twbootstrap).
- Read and subscribe to [The Official Bootstrap Blog](http://blog.getbootstrap.com).
- Have a question that's not a feature request or bug report? [Ask on the mailing list.](http://groups.google.com/group/twitter-bootstrap)
- Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##twitter-bootstrap` channel.

Versioning
----------

[](#versioning)

For transparency and insight into our release cycle, and for striving to maintain backward compatibility, Bootstrap will be maintained under the Semantic Versioning guidelines as much as possible.

Releases will be numbered with the following format:

`..`

And constructed with the following guidelines:

- Breaking backward compatibility bumps the major (and resets the minor and patch)
- New additions without breaking backward compatibility bumps the minor (and resets the patch)
- Bug fixes and misc changes bumps the patch

For more information on SemVer, please visit .

Authors
-------

[](#authors)

**Mark Otto**

-
-

**Jacob Thornton**

-
-

Copyright and license
---------------------

[](#copyright-and-license)

Copyright 2013 Twitter, Inc under [the Apache 2.0 license](LICENSE).

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 70.8% of commits — single point of failure

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 ~42 days

Total

7

Last Release

4651d ago

Major Versions

v2.3.2 → v3.0.0-rc12013-07-27

### Community

Maintainers

![](https://www.gravatar.com/avatar/40b93f5ed56affca31d375b6278b86d5ab50a43951fcf608203058f405c4a829?d=identicon)[itlized](/maintainers/itlized)

---

Top Contributors

[![mdo](https://avatars.githubusercontent.com/u/98681?v=4)](https://github.com/mdo "mdo (4448 commits)")[![fat](https://avatars.githubusercontent.com/u/169705?v=4)](https://github.com/fat "fat (1037 commits)")[![cvrebert](https://avatars.githubusercontent.com/u/419884?v=4)](https://github.com/cvrebert "cvrebert (428 commits)")[![juthilo](https://avatars.githubusercontent.com/u/3535675?v=4)](https://github.com/juthilo "juthilo (39 commits)")[![burnsra](https://avatars.githubusercontent.com/u/171054?v=4)](https://github.com/burnsra "burnsra (34 commits)")[![smerik](https://avatars.githubusercontent.com/u/750822?v=4)](https://github.com/smerik "smerik (26 commits)")[![liuyl](https://avatars.githubusercontent.com/u/1261809?v=4)](https://github.com/liuyl "liuyl (24 commits)")[![StevenBlack](https://avatars.githubusercontent.com/u/80144?v=4)](https://github.com/StevenBlack "StevenBlack (21 commits)")[![Yohn](https://avatars.githubusercontent.com/u/2002591?v=4)](https://github.com/Yohn "Yohn (21 commits)")[![ntwb](https://avatars.githubusercontent.com/u/1016458?v=4)](https://github.com/ntwb "ntwb (17 commits)")[![lookfirst](https://avatars.githubusercontent.com/u/85355?v=4)](https://github.com/lookfirst "lookfirst (16 commits)")[![acmetech](https://avatars.githubusercontent.com/u/134294?v=4)](https://github.com/acmetech "acmetech (16 commits)")[![andriijas](https://avatars.githubusercontent.com/u/33141?v=4)](https://github.com/andriijas "andriijas (14 commits)")[![saas786](https://avatars.githubusercontent.com/u/1642796?v=4)](https://github.com/saas786 "saas786 (12 commits)")[![boulox](https://avatars.githubusercontent.com/u/1390656?v=4)](https://github.com/boulox "boulox (11 commits)")[![ssorallen](https://avatars.githubusercontent.com/u/29612?v=4)](https://github.com/ssorallen "ssorallen (11 commits)")[![XhmikosR](https://avatars.githubusercontent.com/u/349621?v=4)](https://github.com/XhmikosR "XhmikosR (11 commits)")[![caniszczyk](https://avatars.githubusercontent.com/u/63777?v=4)](https://github.com/caniszczyk "caniszczyk (9 commits)")[![purwandi](https://avatars.githubusercontent.com/u/1058672?v=4)](https://github.com/purwandi "purwandi (9 commits)")[![jacobrask](https://avatars.githubusercontent.com/u/58563?v=4)](https://github.com/jacobrask "jacobrask (8 commits)")

---

Tags

cssbootstrap

### Embed Badge

![Health badge](/badges/itlized-twbs/health.svg)

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

###  Alternatives

[twbs/bootstrap

The most popular front-end framework for developing responsive, mobile first projects on the web.

174.1k17.6M327](/packages/twbs-bootstrap)[yiisoft/yii2-bootstrap

The Twitter Bootstrap extension for the Yii framework

19819.6M1.0k](/packages/yiisoft-yii2-bootstrap)[orange-opensource/orange-boosted-bootstrap

Orange Boosted with Bootstrap is a Bootstrap based, Orange branded accessible and ergonomic components library.

2148.7k](/packages/orange-opensource-orange-boosted-bootstrap)[yiisoft/yii2-bootstrap5

The Twitter Bootstrap v5 extension for the Yii framework

661.4M121](/packages/yiisoft-yii2-bootstrap5)[krzysiekpiasecki/gentelella

A Symfony skeleton application with user account functionality based on the Twitter Bootstrap and Gentelella template

991.8k](/packages/krzysiekpiasecki-gentelella)

PHPackages © 2026

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