minify/composer.json
Matthias Mullie 1e59ad8119 Use php-coveralls version that supports PHP5.3
There's no great reason to stop supporting PHP5.3 in this project
(other than PHP no longer supporting that version), so might as
well keep supporting it until there is a good reason to stop doing so.
2016-01-04 14:30:50 -08:00

36 lines
879 B
JSON

{
"name": "matthiasmullie/minify",
"type": "library",
"description": "CSS & JS minifier",
"keywords": ["minify", "minifier", "css", "js", "javascript"],
"homepage": "http://www.minifier.org",
"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.0"
},
"require-dev": {
"matthiasmullie/scrapbook": "~1.0",
"phpunit/phpunit": "~4.8",
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": {
"MatthiasMullie\\Minify\\": "src/"
}
},
"bin": [
"bin/minifycss",
"bin/minifyjs"
]
}