Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
denostr committed Mar 23, 2017
0 parents commit c5db3b4
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# phpstorm project files
.idea

# composer vendor dir
/vendor
19 changes: 19 additions & 0 deletions BootstrapSocialAsset.php
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',
];
}
3 changes: 3 additions & 0 deletions README.md
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.
19 changes: 19 additions & 0 deletions composer.json
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"]
}

0 comments on commit c5db3b4

Please sign in to comment.