-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 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
{
"name": "wubinworks/module-disable-customer",
"description": "Disable Customer Extension for Magento 2. Disable/Enable customer login, password reset and account activation. Works for both Frontend and WebAPI area.",
"keywords": [
"disable customer",
"disable login",
"force logout",
"email confirmation",
"password reset",
"webapi",
"revoke token",
"magento 2 extension"
],
"require": {
"php": ">=7.4",
"magento/module-customer": "*",
"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://www.wubinworks/disable-customer.html",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Wubinworks\\DisableCustomer\\": ""
}
}
}