Skip to content

Commit

Permalink
inited
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed May 25, 2015
0 parents commit 3dcdf0e
Show file tree
Hide file tree
Showing 1,505 changed files with 101,302 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .gitignore
@@ -0,0 +1,21 @@
# runtime dir
/runtime

# vendor dir
/vendor

# composer lock file
composer.lock

# IDE & OS files
.*.swp
.idea
nbproject
.buildpath
.project
.settings
Thumbs.db
.DS_Store

# Added by HiDev

61 changes: 61 additions & 0 deletions .hidev/config.json
@@ -0,0 +1,61 @@
{
"package": {
"name": "yii2-asset-adminlte1",
"title": "Yii2 asset for old adminlte v1",
"type": "yii2-extension",
"features": "yii2, extension",
"license": "BSD-3-Clause",
"forum": "https://forum.hiqdev.com/yii2",
"language": "PHP",
"keywords": "adminlte2, asset, extension, yii2",
"year": 2015
},
"vendor": {
"name": "hiqdev",
"title": "HiQDev",
"homepage": "https://hiqdev.com/",
"email": "support@hiqdev.com",
"authors": {
"Andrii Vasyliev": {
"role": "Project lead",
"email": "sol@hiqdev.com",
"homepage": "https://hipanel.com/"
},
"Dmitry Naumenko": {
"role": "Lead backend developer",
"email": "silverfire@hiqdev.com",
"homepage": "http://silverfire.me/"
},
"Andrey Klochok": {
"role": "Lead frontend developer",
"email": "tafid@hiqdev.com",
"homepage": "https://hiqdev.com/"
},
"Yuriy Myronchuk": {
"role": "QA Lead",
"email": "bladeroot@hiqdev.com",
"homepage": "https://hiqdev.com/"
}
}
},
"deps": "all",
"all": {
"deps": "git, composer, LICENSE, README.md, CHANGELOG.md"
},
"composer.json": {
"require": {
"yiisoft/yii2": "~2.0"
},
"autoload": {
"psr-4": {
"hiqdev\\assets\\adminlte1\\": ""
}
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,7 @@
hiqdev/yii2-asset-adminlte1 changelog
-------------------------------------

### 0.1.0 under development

- inited

29 changes: 29 additions & 0 deletions LICENSE
@@ -0,0 +1,29 @@
Copyright © 2015, HiQDev (https://hiqdev.com/)
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of HiQDev nor Yii2-asset-adminlte1 nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
7 changes: 7 additions & 0 deletions README.md
@@ -0,0 +1,7 @@
Yii2 asset for old adminlte v1
------------------------------

Yii2 asset for old adminlte v1

For more info see wiki:
https://github.com/hiqdev/yii2-asset-adminlte1/wiki
60 changes: 60 additions & 0 deletions composer.json
@@ -0,0 +1,60 @@
{
"name": "hiqdev/yii2-asset-adminlte1",
"type": "yii2-extension",
"description": "Yii2 asset for old adminlte v1",
"keywords": [
"adminlte2",
"asset",
"extension",
"yii2"
],
"homepage": "https://hiqdev.com/yii2-asset-adminlte1",
"license": "BSD-3-Clause",
"support": {
"email": "support@hiqdev.com",
"source": "https://github.com/hiqdev/yii2-asset-adminlte1",
"issues": "https://github.com/hiqdev/yii2-asset-adminlte1/issues",
"wiki": "https://github.com/hiqdev/yii2-asset-adminlte1/wiki",
"forum": "https://forum.hiqdev.com/yii2"
},
"authors": [
{
"name": "Andrii Vasyliev",
"role": "Project lead",
"email": "sol@hiqdev.com",
"homepage": "https://hipanel.com/"
},
{
"name": "Dmitry Naumenko",
"role": "Lead backend developer",
"email": "silverfire@hiqdev.com",
"homepage": "http://silverfire.me/"
},
{
"name": "Andrey Klochok",
"role": "Lead frontend developer",
"email": "tafid@hiqdev.com",
"homepage": "https://hiqdev.com/"
},
{
"name": "Yuriy Myronchuk",
"role": "QA Lead",
"email": "bladeroot@hiqdev.com",
"homepage": "https://hiqdev.com/"
}
],
"require": {
"yiisoft/yii2": "~2.0"
},
"autoload": {
"psr-4": {
"hiqdev\\assets\\adminlte1\\": ""
}
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}

0 comments on commit 3dcdf0e

Please sign in to comment.