Yii2 Bootstrap Social Asset Bundle
This extension provides a assets bundle with Bootstrap Social for Yii2 applications.
For license information check the LICENSE-file.
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.
As dependency in your main application asset bundle
class AppAsset extends AssetBundle
{
// ...
public $depends = [
// ...
'denostr\BootstrapSocial\BootstrapSocialAsset'
];
}