-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 748 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 748 Bytes
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
{
"name": "mirazmac/html-sanitizer",
"type": "library",
"description": "A lightweight library to make sanitizing HTML easier on PHP.",
"keywords": [],
"homepage": "https://mirazmac.com",
"license": "MIT",
"authors": [
{
"name": "Miraz Mac",
"email": "mirazmac@gmail.com",
"homepage": "https://mirazmac.com",
"role": "Original Author"
}
],
"require": {
"php": ">=7.0"
},
"autoload": {
"psr-4": {
"MirazMac\\HtmlSanitizer\\": "src/"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit",
"bench": "php ./bench/run.php"
},
"require-dev": {
"phpunit/phpunit": "6"
}
}