denostr/yii2-bootstrap-social

Asset Bundle for Yii2 with bootstrap-social https://lipis.github.io/bootstrap-social/

Installs: 590

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.3 2017-03-23 20:58 UTC

This package is not auto-updated.

Last update: 2024-03-16 17:31:24 UTC


README

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'
	];
}