-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.43 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "mensbeam/html-parser",
"description": "Parser and serializer for modern HTML documents",
"keywords": ["whatwg", "html", "html5", "parser", "parsing", "dom"],
"type": "library",
"require": {
"php": ">=7.1",
"ext-dom": "*",
"mensbeam/intl": ">=0.9.1",
"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": "[email protected]",
"homepage": "https://dustinwilson.com/"
},
{
"name": "J. King",
"email": "[email protected]",
"homepage": "https://jkingweb.ca/"
}
],
"autoload": {
"psr-4": {
"MensBeam\\HTML\\": [
"lib/"
]
},
"classmap": ["lib/Parser/Token.php"],
"files": ["lib/Parser/ctype.php"]
},
"autoload-dev": {
"psr-4": {
"MensBeam\\HTML\\Test\\": "tests/lib/",
"MensBeam\\HTML\\TestCase\\": "tests/cases/"
}
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}