HTML-Parser/composer.json

56 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2018-03-21 10:55:32 -05:00
{
2021-09-26 15:49:13 -04:00
"name": "mensbeam/html-parser",
2021-10-23 17:34:01 -04:00
"description": "Parser and serializer for modern HTML documents",
2021-10-11 20:04:29 -04:00
"keywords": ["whatwg", "html", "html5", "parser", "parsing", "dom"],
2018-03-21 10:55:32 -05:00
"type": "library",
"require": {
2021-03-06 23:14:20 -05:00
"php": ">=7.1",
2019-12-24 09:38:42 -05:00
"ext-dom": "*",
2021-10-24 13:24:48 -04:00
"mensbeam/intl": ">=0.9.1",
"mensbeam/mimesniff": ">=0.2.0"
2018-03-21 10:55:32 -05:00
},
2019-12-24 09:38:42 -05:00
"suggest": {
"ext-ctype": "Improved performance"
},
2019-12-10 17:58:58 -05:00
"scripts": {
"post-install-cmd": ["@composer bin all install"],
"post-update-cmd": ["@composer bin all update"]
},
2018-03-21 10:55:32 -05:00
"license": "MIT",
"authors": [
{
"name": "Dustin Wilson",
"email": "dustin@dustinwilson.com",
"homepage": "https://dustinwilson.com/"
2019-12-10 17:58:58 -05:00
},
{
"name": "J. King",
"email": "jking@jkingweb.ca",
"homepage": "https://jkingweb.ca/"
2018-03-21 10:55:32 -05:00
}
],
"autoload": {
"psr-4": {
2021-03-21 17:38:05 -04:00
"MensBeam\\HTML\\": [
2021-09-26 15:49:13 -04:00
"lib/"
]
2018-03-21 10:55:32 -05:00
},
2021-09-26 15:49:13 -04:00
"classmap": ["lib/Parser/Token.php"],
"files": ["lib/Parser/ctype.php"]
2018-03-21 10:55:32 -05:00
},
"autoload-dev": {
2019-12-10 17:58:58 -05:00
"psr-4": {
2021-03-21 17:38:05 -04:00
"MensBeam\\HTML\\Test\\": "tests/lib/",
"MensBeam\\HTML\\TestCase\\": "tests/cases/"
2019-12-10 17:58:58 -05:00
}
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
2018-03-21 10:55:32 -05:00
}
}