1{
2	"name": "typo3/html-sanitizer",
3	"description": "HTML sanitizer aiming to provide XSS-safe markup based on explicitly allowed tags, attributes and values.",
4	"type": "library",
5	"license": "MIT",
6	"authors": [
7		{
8			"name": "Oliver Hader",
9			"email": "oliver@typo3.org"
10		}
11	],
12	"extra": {
13		"branch-alias": {
14			"dev-main": "2.x-dev"
15		}
16	},
17	"require": {
18		"ext-dom": "*",
19		"masterminds/html5": "^2.7",
20		"php": "^7.2 || ^8.0",
21		"psr/log": "^1.0"
22	},
23	"require-dev": {
24		"phpunit/phpunit": "^8.5"
25	},
26	"scripts": {
27		"test": "phpunit"
28	},
29	"autoload": {
30		"psr-4": {
31			"TYPO3\\HtmlSanitizer\\": "src/"
32		}
33	},
34	"autoload-dev": {
35		"psr-4": {
36			"TYPO3\\HtmlSanitizer\\Tests\\": "tests/"
37		}
38	}
39}
40