virtualwonders / yii2-fontawesome
An asset bundle for Font Awesome icons with Bootstrap 4.
Installs: 1 703
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=7.1.0
- bower-asset/fontawesome: ^5.6.0
- yiisoft/yii2: ~2.0.14
- yiisoft/yii2-bootstrap4: ^2.0
Requires (Dev)
- yiisoft/yii2-debug: ~2.1.0
- yiisoft/yii2-gii: ~2.1.0
This package is auto-updated.
Last update: 2025-03-29 00:59:22 UTC
README
An asset bundle for Font Awesome icons with Bootstrap 4.
Installation
The preferred way to install this extension is through Composer.
Either run
php composer.phar require --prefer-dist virtualwonders/yii2-fontawesome "*"
or add
"virtualwonders/yii2-fontawesome": "*"
to the require section of your composer.json
file.
Usage
Add in the view as follows:
use virtualwonders\fontawesome\FontAwesomeAsset; FontAwesomeAsset::register($this);
Or, use the minified version:
use virtualwonders\fontawesome\FontAwesomeMinifiedAsset; FontAwesomeMinifiedAsset::register($this);
It can also be added as a dependency on your AppAsset, as follows:
public $depends = [ 'yii\web\YiiAsset', 'yii\bootstrap4\BootstrapAsset', 'yii\bootstrap4\BootstrapPluginAsset', 'virtualwonders\fontawesome\FontAwesomeAsset' ];