From 53c4c1889efd687851d37001968a565739cd6536 Mon Sep 17 00:00:00 2001 From: OmStyle <30441935+omstyle@users.noreply.github.com> Date: Tue, 22 Apr 2025 18:05:59 +0600 Subject: [PATCH] Update AssetsAutoCompressComponent.php Minify_CSS is deprecated, Minify_CSS has been replaced by Minify_CSSmin --- src/AssetsAutoCompressComponent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AssetsAutoCompressComponent.php b/src/AssetsAutoCompressComponent.php index 6b20f5c..2b96eef 100644 --- a/src/AssetsAutoCompressComponent.php +++ b/src/AssetsAutoCompressComponent.php @@ -638,7 +638,7 @@ protected function _processingCssFiles($files = []) $prependRelativePath = implode("/", $fileCodeTmp)."/"; //print_r($prependRelativePath);die; - $contentTmp = \Minify_CSS::minify($contentTmp, [ + $contentTmp = \Minify_CSSmin::minify($contentTmp, [ "prependRelativePath" => $prependRelativePath, 'compress' => true,