Modern DOM library written in PHP for HTML documents
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.

48 lines
1.2 KiB

{
"name": "dw/html5",
"description": "Parses HTML5 text into a php DOMDocument",
"type": "library",
"require": {
"php": "^7.0",
"ext-ctype": "*",
"ext-hash": "*",
"mensbeam/intl": "*"
},
"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": {
"dW\\HTML5\\": [
"lib/",
"lib/DOM",
"lib/DOM/traits"
]
},
"classmap": ["lib/Token.php"]
},
"autoload-dev": {
"files": ["lib/Token.php"],
"psr-4": {
"dW\\HTML5\\Test\\": "tests/lib/",
"dW\\HTML5\\TestCase\\": "tests/cases/"
}
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3"
}
}