-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 1.02 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
{
"name": "wubinworks/module-translation",
"description": "This module [1] Adds translation data from [module or theme root]/i18n/Js/[locale].csv to frontend translation dictionary. [2] Enables Module to override Theme, Language Pack and DB translations by creating CSV file in specific location inside the Module.",
"require": {
"php": ">=7.3",
"magento/framework": "*",
"magento/magento2-base": "~2.4.0",
"magento/module-backend": "*",
"magento/module-translation": "*"
},
"type": "magento2-module",
"version": "1.0.2",
"license": "OSL-3.0",
"authors": [
{
"name": "Wubinworks",
"email": "[email protected]",
"homepage": "https://github.com/wubinworks/magento2-module-translation",
"role": "Developer"
}
],
"minimum-stability": "dev",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Wubinworks\\Translation\\": ""
}
}
}