-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
50 lines (50 loc) · 1.21 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
{
"name": "xemlock/htmlpurifier-html5",
"type": "library",
"description": "HTML5 support for HTML Purifier",
"keywords": [
"HtmlPurifier",
"html",
"html5",
"purifier",
"security",
"xss",
"tidy",
"validator"
],
"homepage": "https://github.com/xemlock/htmlpurifier-html5",
"license": "MIT",
"authors": [
{
"name": "xemlock",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3",
"ezyang/htmlpurifier": "^4.8"
},
"require-dev": {
"phpunit/phpunit": ">=4.7",
"php-coveralls/php-coveralls": "^1.1|^2.1",
"masterminds/html5": "^2.7"
},
"autoload": {
"classmap": ["library/HTMLPurifier/"]
},
"autoload-dev": {
"classmap": ["tests/HTMLPurifier/"]
},
"scripts": {
"post-install-cmd": [
"@php maintenance/patch-phpunit.php"
],
"post-update-cmd": [
"@php maintenance/patch-phpunit.php"
],
"test": "phpunit --coverage-html build/coverage"
},
"suggest": {
"masterminds/html5": "Required to use HTMLPurifier_Lexer_HTML5"
}
}