-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 781 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 781 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
32
33
34
35
36
37
38
39
40
41
{
"name": "voku/anti-xss",
"description": "anti xss-library",
"type": "library",
"keywords": [
"anti-xss",
"clean",
"security",
"xss"
],
"homepage": "https://github.com/voku/anti-xss",
"license": "MIT",
"authors": [
{
"name": "EllisLab Dev Team",
"homepage": "http://ellislab.com/"
},
{
"name": "Lars Moelleken",
"email": "lars@moelleken.org",
"homepage": "https://www.moelleken.org/"
}
],
"require": {
"php": ">=7.0.0",
"voku/portable-utf8": "~6.0.2"
},
"require-dev": {
"phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
},
"autoload": {
"psr-4": {
"voku\\helper\\": "src/voku/helper/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
}
}