1
0
mirror of https://github.com/mrclay/minify.git synced 2025-01-29 19:27:45 +01:00

Merge pull request #44 from glensc/composer.json2

add composer.json file
This commit is contained in:
Steve Clay 2013-03-23 12:59:25 -07:00
commit e228891304
2 changed files with 24 additions and 1 deletions

3
.gitignore vendored
View File

@ -3,4 +3,5 @@
/test
/docs
.idea/
.DS_Store
.DS_Store
vendor

22
composer.json Normal file
View File

@ -0,0 +1,22 @@
{
"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": "http://code.google.com/p/minify/",
"license": "BSD-3-Clause",
"version": "2.1.5",
"authors": [
{
"name": "Stephen Clay",
"email": "steve@mrclay.org",
"role": "Developer"
}
],
"require": {
"php": ">=5.2.1",
"ext-pcre": "*"
},
"autoload": {
"classmap": ["min/lib/"]
}
}