1
0
mirror of https://github.com/mrclay/minify.git synced 2025-02-23 08:25:12 +01:00
minify/composer.json

33 lines
925 B
JSON
Raw Normal View History

{
2012-12-08 00:37:20 +02:00
"name": "mrclay/minify",
"type": "library",
2012-12-08 00:37:20 +02:00
"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": "http://code.google.com/p/minify/",
"license": "BSD-3-Clause",
2012-12-08 00:37:20 +02:00
"authors": [
{
"name": "Stephen Clay",
2012-12-08 01:50:01 +02:00
"email": "steve@mrclay.org",
"role": "Developer"
2012-12-08 00:37:20 +02:00
}
],
2013-09-26 09:07:18 -04:00
"support": {
2013-09-26 09:10:32 -04:00
"email": "minify@googlegroups.com",
2013-09-26 09:07:18 -04:00
"issues": "http://code.google.com/p/minify/issues/list",
"wiki": "http://code.google.com/p/minify/w/list"
2013-09-26 09:07:43 -04:00
},
2014-09-27 16:18:23 +03:00
"autoload": {
"classmap": ["min/lib/"]
},
"require": {
"ext-pcre": "*",
"firephp/firephp-core": "~0.4.0",
"php": ">=5.2.1",
"tubalmartin/cssmin": "~2.4.8"
},
2014-09-27 16:18:23 +03:00
"suggest": {
"leafo/lessphp": "~0.4.0",
"meenie/javascript-packer": "~1.1"
2012-12-08 00:37:20 +02:00
}
}