1
0
mirror of https://github.com/mrclay/minify.git synced 2025-01-17 21:28:14 +01:00
minify/composer.json

33 lines
912 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-25 14:40:53 +03:00
"autoload": {
"classmap": ["min/lib/"]
},
"require": {
"php": ">=5.2.1",
"ext-pcre": "*"
},
2014-09-25 14:40:53 +03:00
"require-dev": {
"tubalmartin/cssmin": "~2.4.8"
},
"suggest": {
"tubalmartin/cssmin": "Support minify with CSSMin (YUI PHP port)"
2012-12-08 00:37:20 +02:00
}
}