blob: a6dd4ab6ace5f1426f42ebf761acd371564fd4af [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001{
2 "name": "matthiasmullie/minify",
3 "type": "library",
4 "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.",
5 "keywords": ["minify", "minifier", "css", "js", "javascript"],
6 "homepage": "http://www.minifier.org",
7 "license": "MIT",
8 "authors": [
9 {
10 "name": "Matthias Mullie",
11 "homepage": "http://www.mullie.eu",
12 "email": "minify@mullie.eu",
13 "role": "Developer"
14 }
15 ],
16 "require": {
17 "php": ">=5.3.0",
18 "ext-pcre": "*",
19 "matthiasmullie/path-converter": "~1.1"
20 },
21 "require-dev": {
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020022 "matthiasmullie/scrapbook": "dev-master",
23 "phpunit/phpunit": ">=4.8",
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010024 "friendsofphp/php-cs-fixer": "~2.0"
25 },
26 "suggest": {
27 "psr/cache-implementation": "Cache implementation to use with Minify::cache"
28 },
29 "autoload": {
30 "psr-4": {
31 "MatthiasMullie\\Minify\\": "src/"
32 }
33 },
34 "bin": [
35 "bin/minifycss",
36 "bin/minifyjs"
37 ]
38}