bors/bootstrap3

There is no license information available for the latest version (v3.3.7.0) of this package.

This package's canonical repository appears to be gone and the package has been frozen as a result.

v3.3.7.0 2017-11-13 00:58 UTC

This package is auto-updated.

Last update: 2023-02-10 19:28:32 UTC


README

Bootstrap The most popular HTML, CSS, and JS library in the world

# To use the CDN-version
composer require bors/bootstrap3

# To use the local asset version, you also need:
composer require bower-asset/bootstrap=^3.3.7

The local or CDN version is detected by the install of the package bower-asset/bootstrap-tagsinput.

Call \B2\Bootstrap3::load(); in pre_show() method on any view or config.

namespace \MyApp;

class View extends \B2\View
{
	function pre_show()
	{
		\B2\Bootstrap3::load();
		return parent::pre_show();
	}
}