-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.49 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.49 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "wyrihaximus/html-compress",
"description": "Compress/minify your HTML",
"license": "MIT",
"keywords": [
"html",
"compress"
],
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com",
"homepage": "http://wyrihaximus.net/"
}
],
"require": {
"php": "^8.4",
"voku/html-min": "^4.5.1",
"voku/simple_html_dom": "^4.8.9",
"wyrihaximus/compress": "^2.0",
"wyrihaximus/compress-contracts": "^1",
"wyrihaximus/css-compress": "^2",
"wyrihaximus/js-compress": "^5 || ^6"
},
"require-dev": {
"wyrihaximus/makefiles": "^0.7.15",
"wyrihaximus/test-utilities": "^8.6.0"
},
"autoload": {
"psr-4": {
"WyriHaximus\\HtmlCompress\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\HtmlCompress\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"wyrihaximus/makefiles": true,
"wyrihaximus/test-utilities": true
},
"platform": {
"php": "8.4.13"
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"make on-install-or-update || true"
],
"post-update-cmd": [
"make on-install-or-update || true"
]
}
}