-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.59 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
56
57
58
59
{
"name": "soosyze/kses",
"type": "library",
"description": "An HTML/XHTML filter written in PHP. Checks on attribute values. Can be used to avoid Cross-Site Scripting (XSS), Buffer Overflows and Denial of Service attacks, among other things.",
"keywords": [
"php",
"kses",
"xss",
"xss-attacks",
"filter",
"web-security",
"security",
"dompurify",
"cross-site-scripting",
"prevent-xss-attacks"
],
"license": "LGPL-2.0-only",
"authors": [
{
"name": "Ulf Harnhammar",
"role": "Main coder, project leader"
},
{
"name": "Mathieu NOËL",
"email": "[email protected]",
"homepage": "https://mathieu-noel.fr",
"role": "Coder of Soosyze kses"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"soosyze/php-cs-fixer-config": "^1.0",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^8.5",
"rector/rector": "^0.12"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Pour normaliser le code PHP.",
"phpdocumentor/phpdocumentor": "Pour générer la documentation des services."
},
"autoload": {
"psr-4": {
"Soosyze\\Kses\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Soosyze\\Kses\\Tests\\": "tests"
}
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"classmap-authoritative": true
}
}