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.

57 lines
1.5 KiB

{
"name": "mensbeam/html-dom",
"description": "Modern DOM library written in PHP for HTML documents",
"type": "library",
"require": {
"php": ">=8.0.2",
"ext-dom": "*",
"mensbeam/html-parser": "^1.2.1",
"mensbeam/framework": "^1.0.4",
"symfony/css-selector": "^5.3"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3",
"mikey179/vfsstream": "^1.6",
"nikic/php-parser": "^4.13"
},
"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\\DOM\\": [
"lib/",
"lib/HTMLElement"
]
}
},
"autoload-dev": {
"psr-4": {
"MensBeam\\HTML\\DOM\\Test\\": "tests/lib/",
"MensBeam\\HTML\\DOM\\TestCase\\": [
"tests/cases/",
"tests/cases/Document",
"tests/cases/Serializer"
]
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}