HTML-DOM/composer.json

52 lines
1.3 KiB
JSON
Raw Normal View History

2018-03-21 11:55:32 -04:00
{
"name": "dw/html5",
"description": "Parses HTML5 text into a php DOMDocument",
"type": "library",
"require": {
"php": "^7.1",
2019-12-24 09:38:42 -05:00
"ext-dom": "*",
"mensbeam/intl": "*",
"mensbeam/mimesniff": "^0.2.0"
2018-03-21 11:55:32 -04: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 11:55:32 -04: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 11:55:32 -04:00
}
],
"autoload": {
"psr-4": {
"dW\\HTML5\\": [
"lib/",
"lib/DOM",
"lib/DOM/traits"
]
2018-03-21 11:55:32 -04:00
},
2019-12-24 09:38:42 -05:00
"classmap": ["lib/Token.php"],
"files": ["lib/ctype.php"]
2018-03-21 11:55:32 -04:00
},
"autoload-dev": {
2019-12-10 17:58:58 -05:00
"psr-4": {
"dW\\HTML5\\Test\\": "tests/lib/",
"dW\\HTML5\\TestCase\\": "tests/cases/"
}
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3"
2018-03-21 11:55:32 -04:00
}
}