-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.08 KB
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 1.08 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
{
"name": "hexydec/htmldoc",
"description": "A token based HTML document parser and minifier. Minify HTML documents including inline CSS, Javascript, and SVG's on the fly. Extract document text, attributes, and fragments. Full test suite.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/hexydec/htmldoc",
"authors": [
{
"name": "Will Earp",
"email": "will@hexydec.com",
"homepage": "https://github.com/hexydec"
}
],
"keywords": ["html", "minify", "minifier", "parser", "compiler", "dom", "simplehtmldom", "css", "javascript", "xml", "svg"],
"minimum-stability": "stable",
"require": {
"php": ">=8.4",
"hexydec/tokenise": "1.0.4",
"hexydec/cssdoc": "1.2.4",
"hexydec/jslite": "1.0.8"
},
"autoload": {
"classmap": ["src/"]
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse --memory-limit=512M"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"phpstan/phpstan": "^2.0"
},
"config": {
"discard-changes": true
}
}