2012-10-09 12:48:24 +02:00
{
2014-10-09 08:38:58 +02:00
"name" : "matthiasmullie/minify" ,
"type" : "library" ,
2017-09-26 17:29:20 +02:00
"description" : "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns." ,
2015-02-16 21:04:50 +01:00
"keywords" : [ "minify" , "minifier" , "css" , "js" , "javascript" ] ,
2014-10-21 08:50:28 +02:00
"homepage" : "http://www.minifier.org" ,
2014-10-09 08:38:58 +02:00
"license" : "MIT" ,
"authors" : [
{
"name" : "Matthias Mullie" ,
"homepage" : "http://www.mullie.eu" ,
"email" : "minify@mullie.eu" ,
"role" : "Developer"
}
] ,
2013-12-01 23:47:40 +01:00
"require" : {
"php" : ">=5.3.0" ,
2015-02-21 00:27:27 +01:00
"ext-pcre" : "*" ,
2017-01-26 10:03:21 +01:00
"matthiasmullie/path-converter" : "~1.1"
2013-12-01 23:47:40 +01:00
} ,
2014-10-09 08:38:58 +02:00
"require-dev" : {
2015-09-04 11:02:35 +02:00
"matthiasmullie/scrapbook" : "~1.0" ,
2016-11-23 11:15:27 +01:00
"phpunit/phpunit" : "~4.8" ,
2017-09-26 17:29:20 +02:00
"friendsofphp/php-cs-fixer" : "~2.0"
2014-10-09 08:38:58 +02:00
} ,
2017-06-08 09:49:44 +02:00
"suggest" : {
"psr/cache-implementation" : "Cache implementation to use with Minify::cache"
} ,
2013-12-01 23:47:40 +01:00
"autoload" : {
2014-10-09 08:38:58 +02:00
"psr-4" : {
"MatthiasMullie\\Minify\\" : "src/"
}
2015-02-09 18:03:03 +01:00
} ,
2015-02-12 13:49:53 +01:00
"bin" : [
"bin/minifycss" ,
"bin/minifyjs"
]
2012-10-09 12:48:24 +02:00
}