Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
metalagman committed Feb 20, 2015
1 parent 157ca0b commit a81a56d
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
32 changes: 32 additions & 0 deletions composer.json
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"
}
}
}
12 changes: 12 additions & 0 deletions src/FontAwesomeBundle.php
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'
];
}

0 comments on commit a81a56d

Please sign in to comment.