Skip to content

denostr/yii2-bootstrap-social

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yii2 Bootstrap Social Asset Bundle

This extension provides a assets bundle with Bootstrap Social for Yii2 applications.

For license information check the LICENSE-file.

License Latest Stable Version Latest Unstable Version Total Downloads

Installation

The preferred way to install this extension is through composer.

Either run

composer require "denostr/yii2-bootstrap-social:~1.0"

or add

"denostr/yii2-bootstrap-social": "~1.0"

to the require section of your composer.json file.

Usage

As dependency in your main application asset bundle

class AppAsset extends AssetBundle
{
	// ...

	public $depends = [
		// ...
		'denostr\BootstrapSocial\BootstrapSocialAsset'
	];
}