-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.38 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
{
"name": "wubinworks/module-xml-security",
"description": "A replacement of `\\Magento\\Framework\\Xml\\Security` for Magento 2 with enhanced security.",
"keywords": [
"magento2",
"magento 2",
"xxe",
"security",
"xml",
"xml entity",
"xml encoding",
"xml security",
"enhancement",
"encoding",
"php-fpm",
"cosmic sting",
"cosmicsting",
"cve-2024-34102"
],
"homepage": "https://www.wubinworks.com",
"support": {
"issues": "https://github.com/wubinworks/magento2-enhanced-xml-security/issues",
"chat": "https://www.wubinworks.com/contact"
},
"require": {
"php": ">=7.1",
"laminas/laminas-xml": "^1.2",
"magento/magento2-base": "~2.3.0 || ~2.4.0"
},
"type": "magento2-module",
"version": "1.0.1",
"license": "OSL-3.0",
"authors": [
{
"name": "Wubinworks Dev Team",
"email": "[email protected]",
"homepage": "https://www.wubinworks.com/enhanced-xml-security.html",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Wubinworks\\XmlSecurity\\": ""
}
}
}