minify/composer.json

39 lines
1.1 KiB
JSON
Raw Normal View History

2012-10-09 12:48:24 +02:00
{
2014-10-09 08:38:58 +02:00
"name": "matthiasmullie/minify",
"type": "library",
"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"
}
],
"require": {
"php": ">=5.3.0",
"ext-pcre": "*",
"matthiasmullie/path-converter": "~1.1"
},
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",
"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"
},
"autoload": {
2014-10-09 08:38:58 +02:00
"psr-4": {
"MatthiasMullie\\Minify\\": "src/"
}
},
"bin": [
"bin/minifycss",
"bin/minifyjs"
]
2012-10-09 12:48:24 +02:00
}