-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·47 lines (47 loc) · 1.28 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
{
"name": "magetarian/module-customer-tfa",
"description": "TFA customer module for Magento 2",
"homepage": "https://github.com/magetarian/customerTwoFactorAuth",
"type": "magento2-module",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "~7.4.0||~8.1.0",
"magento/framework": "~103.0",
"magento/module-customer": "~103.0",
"magento/module-backend": "~102.0",
"magento/module-eav": "~102.1",
"magento/module-store": "~101.1",
"endroid/qr-code": "^4.3.5",
"magento/module-two-factor-auth": "~1.0||~1.1"
},
"license": [
"GPL-3.0-only"
],
"authors": [
{
"name": "Alexander Lukyanov",
"email": "support@sashas.org"
},
{
"name": "Atish Goswami",
"email": "atishgoswami@gmail.com"
}
],
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"Magetarian\\CustomerTwoFactorAuth\\": ""
}
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"magento/magento-composer-installer": false
}
}
}