-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing the subdirectory with the code in /src
- Loading branch information
1 parent
3cdfc97
commit ad9e491
Showing
6 changed files
with
43 additions
and
15 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
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
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,21 @@ | ||
<?php | ||
/** | ||
* The pseudo-only IDE tips | ||
* | ||
* @author Semenov Alexander <[email protected]> | ||
* @link https://skeeks.com/ | ||
* @copyright (c) 2010 SkeekS | ||
* @date 16.09.2017 | ||
*/ | ||
namespace yii\web; | ||
use skeeks\yii2\assetsAuto\AssetsAutoCompressComponent; | ||
|
||
/** | ||
* | ||
* @property AssetsAutoCompressComponent $assetsAutoCompress | ||
* | ||
* Class Application | ||
* @package yii\web | ||
*/ | ||
class Application | ||
{} |
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 |
---|---|---|
@@ -1,21 +1,27 @@ | ||
{ | ||
"name": "skeeks/yii2-assets-auto-compress", | ||
"description": "Automatically compile and merge files js + css", | ||
"description": "Automatically compile and merge files js + css + html in yii2 project", | ||
"keywords": ["yii", "app", "skeeks", "sx", "framework", "js", "css", "assets", "auto assets"], | ||
"homepage": "http://www.skeeks.com/", | ||
"type": "yii2-extension", | ||
"license": "BSD-3-Clause", | ||
"license": "GPL-3.0+", | ||
"support": { | ||
"issues": "http://www.skeeks.com/", | ||
"wiki": "http://cms.skeeks.com/wiki/", | ||
"source": "https://github.com/skeeks-semenov/yii2-assets-auto-compress" | ||
"issues": "https://github.com/skeeks-semenov/yii2-assets-auto-compress/issues", | ||
"source": "https://github.com/skeeks-semenov/yii2-assets-auto-compress", | ||
"wiki": "https://cms.skeeks.com/", | ||
"authors": "https://skeeks.com" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Semenov Alexander", | ||
"email": "[email protected]" | ||
} | ||
], | ||
{ | ||
"name": "SkeekS", | ||
"email": "[email protected]", | ||
"homepage": "https://skeeks.com" | ||
}, | ||
{ | ||
"name": "Semenov Alexander", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"yiisoft/yii2": "^2", | ||
"yiisoft/yii2-httpclient": "^2", | ||
|
@@ -25,7 +31,7 @@ | |
}, | ||
"autoload": { | ||
"psr-4": { | ||
"skeeks\\yii2\\assetsAuto\\": "" | ||
"skeeks\\yii2\\assetsAuto\\": "src/" | ||
} | ||
} | ||
} |
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
components/HtmlCompressor.php → src/components/HtmlCompressor.php
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<?php | ||
/** | ||
* @author Semenov Alexander <[email protected]> | ||
* @link http://skeeks.com/ | ||
* @copyright 2010 SkeekS (СкикС) | ||
* @date 16.07.2016 | ||
* @link https://skeeks.com/ | ||
* @copyright (c) 2010 SkeekS | ||
* @date 16.09.2017 | ||
*/ | ||
namespace skeeks\yii2\assetsAuto\components; | ||
use yii\helpers\ArrayHelper; | ||
|