1
0
mirror of https://github.com/mrclay/minify.git synced 2025-02-21 07:22:26 +01:00
minify/composer.json

34 lines
956 B
JSON

{
"name": "mrclay/minify",
"type": "library",
"description": "Minify is a PHP5 app that helps you follow several rules for client-side performance. It combines multiple CSS or Javascript files, removes unnecessary whitespace and comments, and serves them with gzip encoding and optimal client-side cache headers",
"homepage": "https://github.com/mrclay/minify",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Stephen Clay",
"email": "steve@mrclay.org",
"role": "Developer"
}
],
"support": {
"email": "minify@googlegroups.com",
"issues": "https://github.com/mrclay/minify/issues",
"wiki": "https://github.com/mrclay/minify/blob/master/docs"
},
"autoload": {
"classmap": ["lib/"]
},
"require": {
"ext-pcre": "*",
"firephp/firephp-core": "~0.4.0",
"php": ">=5.2.1",
"tubalmartin/cssmin": "~2.4.8",
"mrclay/jsmin-php": "~2"
},
"suggest": {
"leafo/lessphp": "~0.4.0",
"meenie/javascript-packer": "~1.1"
}
}