-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
51 lines (48 loc) · 1.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "websharks/html-compressor",
"homepage": "https://github.com/websharks/html-compressor",
"description": "Combines & compresses CSS/JS/HTML code.",
"keywords": [
"websharks",
"html",
"compressor"
],
"type": "library",
"license": "GPL-3.0+",
"authors": [{
"name": "websharks",
"homepage": "http://websharks-inc.com/",
"role": "company"
}, {
"name": "jaswsinc",
"homepage": "http://jaswsinc.com/",
"role": "developer"
}, {
"name": "raamdev",
"homepage": "http://raam.org/",
"role": "developer"
}],
"support": {
"source": "https://github.com/websharks/html-compressor",
"issues": "https://github.com/websharks/html-compressor/issues"
},
"require": {
"php": ">=5.4",
"ext-openssl": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"websharks/js-minifier": "dev-master",
"websharks/css-minifier": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"WebSharks\\HtmlCompressor\\": "src/includes/classes"
}
},
"config": {
"vendor-dir": "src/vendor",
"preferred-install": "dist"
}
}