-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
157ca0b
commit a81a56d
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "yii-dream-team/yii2-fa", | ||
"description": "Font Awesome bundle for Yii2", | ||
"type": "yii2-extension", | ||
"keywords": [ | ||
"yii2", | ||
"font-awesome" | ||
], | ||
"homepage": "http://yiidreamteam.com/yii2/fa", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Alexey Samoylov", | ||
"email": "[email protected]", | ||
"homepage": "http://yiidreamteam.com/team/alexey", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/yii-dream-team/yii2-fa/issues", | ||
"source": "https://github.com/yii-dream-team/yii2-fa" | ||
}, | ||
"require": { | ||
"yiisoft/yii2": "~2", | ||
"bower-asset/font-awesome": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"yiidreamteam\\fa\\": "./src" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
namespace yiidreamteam\fa; | ||
|
||
use yii\web\AssetBundle; | ||
|
||
class FontAwesomeBundle extends AssetBundle | ||
{ | ||
public $sourcePath = '@bower/font-awesome'; | ||
public $css = [ | ||
'css/font-awesome.min.css' | ||
]; | ||
} |