-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit c5db3b4
Showing
4 changed files
with
46 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,5 @@ | ||
# phpstorm project files | ||
.idea | ||
|
||
# composer vendor dir | ||
/vendor |
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,19 @@ | ||
<?php | ||
|
||
namespace app\assets; | ||
|
||
use yii\web\AssetBundle; | ||
|
||
class BootstrapSocialAsset extends AssetBundle | ||
{ | ||
public $sourcePath = '@bower/bootstrap-social'; | ||
|
||
public $css = [ | ||
'bootstrap-social.css', | ||
]; | ||
|
||
public $depends = [ | ||
'yii\bootstrap\BootstrapAsset', | ||
'rmrevin\yii\fontawesome\AssetBundle', | ||
]; | ||
} |
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,3 @@ | ||
# Yii2 [Bootstrap Social](https://lipis.github.io/bootstrap-social/) Asset Bundle | ||
|
||
This extension provides a assets bundle with [Bootstrap Social](https://lipis.github.io/bootstrap-social/) for [Yii2](http://www.yiiframework.com/) applications. |
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,19 @@ | ||
{ | ||
"name": "den-ost/yii2-bootstrap-social", | ||
"description": "Asset Bundle for Yii2 with bootstrap-social https://lipis.github.io/bootstrap-social/", | ||
"type": "yii2-extension", | ||
"require": { | ||
"php": ">=5.3", | ||
"yiisoft/yii2": "2.0.*", | ||
"rmrevin/yii2-fontawesome": "~2.17" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Denis Ostrovsky", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"keywords": ["yii", "yii2", "bootstrap", "social", "asset", "bundle"] | ||
} |