minify/composer.json
Matthias Mullie a0c352781a Remove path conversion code, re-use other project
I've moved the giant relative path conversion code into another project.
That way, this code can be kept cleaner.
2015-02-21 00:27:29 +01:00

35 lines
842 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": {
"phpunit/phpunit": "4.3.*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"MatthiasMullie\\Minify\\": "src/"
}
},
"bin": [
"bin/minifycss",
"bin/minifyjs"
]
}