Skip to content

Commit

Permalink
Changing the subdirectory with the code in /src
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeks-semenov committed Sep 16, 2017
1 parent 3cdfc97 commit ad9e491
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ CHANGELOG

1.3.0.pre
-----------------
* Changing the subdirectory with the code in /src
* Fixed https://github.com/skeeks-semenov/yii2-assets-auto-compress/issues/40
* Using user-agent header
* Do not use @web and @webroot (using \Yii::$app->assetManager->baseUrl and \Yii::$app->assetManager->basePath)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Automatically compile and merge files js + css + html
Automatically compile and merge files js + css + html in yii2 project
===================================

This solution enables you to dynamically combine js and css files to optimize the html page.
Expand Down
21 changes: 21 additions & 0 deletions _ide/YiiApplication.php
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
{}
28 changes: 17 additions & 11 deletions composer.json
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",
Expand All @@ -25,7 +31,7 @@
},
"autoload": {
"psr-4": {
"skeeks\\yii2\\assetsAuto\\": ""
"skeeks\\yii2\\assetsAuto\\": "src/"
}
}
}
File renamed without changes.
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;
Expand Down

0 comments on commit ad9e491

Please sign in to comment.