A modern, accurate HTML parser and serializer for PHP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.4 KiB

{
"name": "mensbeam/html-parser",
3 years ago
"description": "Parser and serializer for modern HTML documents",
"keywords": ["whatwg", "html", "html5", "parser", "parsing", "dom"],
"type": "library",
"require": {
"php": ">=7.1",
"ext-dom": "*",
3 years ago
"mensbeam/intl": ">=0.9.1",
"mensbeam/mimesniff": ">=0.2.0"
},
"suggest": {
"ext-ctype": "Improved performance"
},
"scripts": {
"post-install-cmd": ["@composer bin all install"],
"post-update-cmd": ["@composer bin all update"]
},
"license": "MIT",
"authors": [
{
"name": "Dustin Wilson",
"email": "dustin@dustinwilson.com",
"homepage": "https://dustinwilson.com/"
},
{
"name": "J. King",
"email": "jking@jkingweb.ca",
"homepage": "https://jkingweb.ca/"
}
],
"autoload": {
"psr-4": {
"MensBeam\\HTML\\": [
"lib/"
]
},
"classmap": ["lib/Parser/Token.php"],
"files": ["lib/Parser/ctype.php"]
},
"autoload-dev": {
"psr-4": {
"MensBeam\\HTML\\Test\\": "tests/lib/",
"MensBeam\\HTML\\TestCase\\": "tests/cases/"
}
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}