wikimedia/minify
最新稳定版本:2.9.0
Composer 安装命令:
composer require wikimedia/minify
包简介
Minification of JavaScript code and CSS stylesheets.
README 文档
README
Minify is a PHP library for minification of JavaScript code and CSS stylesheets.
Quick start
Install using Composer, from Packagist.org:
composer require wikimedia/minify
Usage
use Wikimedia\Minify\JavaScriptMinifier; $input = ' /** * @param a * @param b */ function sum(a, b) { // Add it up! return a + b; } '; $output = JavaScriptMinifier::minify( $input ); // Result: // function sum(a,b){return a+b;}
use Wikimedia\Minify\CSSMin; $input = ' .foo, .bar { /* comment */ prop: value; } '; $output = CSSMin::minify( $input ); // Result: // .foo,.bar{prop:value}
Known limitations
The following trade-offs were made for improved runtime performance and code simplicity. If they cause problems in real-world applications without trivial workarounds, please let us know!
-
T37492: In CSS, content within quoted strings that looks like source code are sometimes minified.
-
T287631: In CSS, writing a URL over multiple lines with escaped line-breaks is not supported.
Contribute
- Issue tracker: https://phabricator.wikimedia.org/tag/wikimedia-minify/
- Source code: https://gerrit.wikimedia.org/g/mediawiki/libs/Minify
- Submit patches via Gerrit: https://www.mediawiki.org/wiki/Developer_account
- To run tests:
composer update, thencomposer test
See also
- High-level documentation: https://www.mediawiki.org/wiki/ResourceLoader/Architecture
统计信息
- 总下载量: 762.7k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 1
- 依赖项目数: 10
- 推荐数: 1
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2021-02-09