sersid/yii2-font-awesome-asset

Adding FontAwesome to your Yii2 project via Composer

Installs: 11 728

Dependents: 5

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 1

Open Issues: 1

Type:yii2-extension

v1.0.0 2014-11-27 00:43 UTC

This package is not auto-updated.

Last update: 2024-03-26 00:54:17 UTC


README

Adding FontAwesome to your Yii2 project via Composer

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist sersid/yii2-font-awesome-asset "*"

or add

"sersid/yii2-font-awesome-asset": "*"

to the require section of your composer.json file.

Usage

The following example is if you wish to register the bundle on a specific view

// this code is written on that specific view
sersid\fontawesome\Asset::register($this);

But it could be that you wish to use it as part of another asset bundle or globally registered on your application. For the following example, we going to registered as part of the main application asset bundle AppAsset:

class AppAsset extends AssetBundle
{
    public $depends = [
        ...
        'sersid\fontawesome\Asset'
    ];
}