mirror of
https://github.com/mrclay/minify.git
synced 2025-08-27 15:50:15 +02:00
Merge pull request #44 from glensc/composer.json2
add composer.json file
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,3 +4,4 @@
|
|||||||
/docs
|
/docs
|
||||||
.idea/
|
.idea/
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
vendor
|
||||||
|
22
composer.json
Normal file
22
composer.json
Normal 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/"]
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user