-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
29 lines (29 loc) · 959 Bytes
/
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
{
"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.0",
"hexydec/tokenise": "dev-master",
"hexydec/cssdoc": "dev-master",
"hexydec/jslite": "dev-master"
},
"autoload": {
"classmap": ["src/"]
},
"require-dev": {
"phpunit/phpunit": "10.1.2",
"phpstan/phpstan": "^1.10"
}
}