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