53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "mensbeam/html",
|
|
"description": "Parses modern HTML text into a PHP DOMDocument",
|
|
"type": "library",
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"ext-dom": "*",
|
|
"mensbeam/intl": ">=0.9.0",
|
|
"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/",
|
|
"lib/DOM",
|
|
"lib/DOM/traits"
|
|
]
|
|
},
|
|
"classmap": ["lib/Token.php"],
|
|
"files": ["lib/ctype.php"]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"MensBeam\\HTML\\Test\\": "tests/lib/",
|
|
"MensBeam\\HTML\\TestCase\\": "tests/cases/"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"bamarni/composer-bin-plugin": "^1.3",
|
|
"masterminds/html5": "^2.7",
|
|
"daux/daux.io": "^0.16.0"
|
|
}
|
|
}
|