-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 988 Bytes
/
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
{
"name": "wubinworks/module-cosmic-sting-patch",
"description": "Magento 2 patch for CVE-2024-34102(aka CosmicSting). Another way(as an extension) to hotfix the security hole if you cannot apply the official patch or cannot upgrade Magento.",
"require": {
"php": ">=7.4",
"laminas/laminas-xml": "~1.4",
"magento/framework": "*",
"magento/magento2-base": "~2.4.0"
},
"type": "magento2-module",
"version": "1.0.0",
"license": "OSL-3.0",
"authors": [
{
"name": "Wubinworks",
"email": "[email protected]",
"homepage": "https://github.com/wubinworks/magento2-cosmic-sting-patch",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Wubinworks\\CosmicStingPatch\\": ""
}
}
}