1
0
mirror of https://github.com/mrclay/minify.git synced 2025-03-12 08:30:18 +01:00
minify/composer.json

55 lines
1.4 KiB
JSON
Raw Normal View History

{
2012-12-08 00:37:20 +02:00
"name": "mrclay/minify",
"type": "library",
2012-12-08 00:37:20 +02:00
"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",
2015-09-27 19:54:12 -04:00
"homepage": "https://github.com/mrclay/minify",
"license": "BSD-3-Clause",
2012-12-08 00:37:20 +02:00
"authors": [
{
"name": "Stephen Clay",
2012-12-08 01:50:01 +02:00
"email": "steve@mrclay.org",
"role": "Developer"
2012-12-08 00:37:20 +02:00
}
],
2013-09-26 09:07:18 -04:00
"support": {
2013-09-26 09:10:32 -04:00
"email": "minify@googlegroups.com",
2015-09-27 19:54:12 -04:00
"issues": "https://github.com/mrclay/minify/issues",
"wiki": "https://github.com/mrclay/minify/blob/master/docs"
2013-09-26 09:07:43 -04:00
},
2014-09-27 16:18:23 +03:00
"autoload": {
"classmap": ["lib/"]
2014-09-27 16:18:23 +03:00
},
2015-11-18 17:17:43 +02:00
"autoload-dev": {
"classmap": ["tests/TestCase.php"]
},
"require": {
"php": ">=5.3.0",
"ext-pcre": "*",
"firephp/firephp-core": "~0.4.0",
"intervention/httpauth": "~2.0",
"monolog/monolog": "~1.1",
"mrclay/jsmin-php": "~2",
"mrclay/props-dic": "^2.2",
"tubalmartin/cssmin": "~2.4.8"
},
"require-dev": {
"leafo/lessphp": "~0.4.0",
"leafo/scssphp": "^0.3.0",
"meenie/javascript-packer": "~1.1",
2016-02-03 09:08:31 +02:00
"phpunit/phpunit": "4.8.*",
"tedivm/jshrink": "~1.1.0"
2015-11-19 11:41:39 +02:00
},
"suggest": {
"leafo/lessphp": "LESS support",
"meenie/javascript-packer": "Keep track of the Packer PHP port using Composer"
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
2016-03-13 14:56:14 +02:00
"dev-master": "3.0.x-dev"
}
}
}