-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1.01 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
{
"name": "wubinworks/module-disable-change-email",
"description": "A simple Magento 2 extension that prevents customer from changing account email address. Works for both Frontend and WebAPI area.",
"keywords": [
"disable change email",
"email notification",
"webapi",
"magento 2 extension"
],
"require": {
"php": ">=7.3",
"magento/module-customer": "*",
"magento/magento2-base": "~2.4.0"
},
"type": "magento2-module",
"version": "1.1.0",
"license": "OSL-3.0",
"authors": [
{
"name": "Wubinworks",
"email": "[email protected]",
"homepage": "https://www.wubinworks/disable-change-email.html",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Wubinworks\\DisableChangeEmail\\": ""
}
}
}