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.

63 lines
1.7 KiB

{
"name": "mensbeam/html-dom",
"description": "Modern DOM library written in PHP for HTML documents",
"type": "library",
"require": {
"php": ">=8.0",
"ext-dom": "*",
"mensbeam/html-parser": "dev-master",
"mensbeam/framework": "dev-main",
"symfony/css-selector": "^5.3"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3",
"daux/daux.io": "^0.16.0",
"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/traits"
]
}
},
"autoload-dev": {
"psr-4": {
"MensBeam\\HTML\\DOM\\Test\\": "tests/lib/",
"MensBeam\\HTML\\DOM\\TestCase\\": [
"tests/cases/",
"tests/cases/Document",
"tests/cases/Serializer"
]
}
},
"repositories": [
{
"type": "git",
"url": "mensbeam-gitea:MensBeam/Framework.git"
},
{
"type": "git",
"url": "mensbeam-gitea:MensBeam/HTML-Parser.git"
}
]
}