-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1013 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
34
35
36
37
38
39
40
41
{
"name": "mygento/module-two-factor-auth",
"description": "Mygento module extending Magento TwoFactorAuth module.",
"type": "magento2-module",
"version": "2.4.0",
"license": "OSL-3.0",
"authors": [
{
"name": "Mygento",
"email": "connect@mygento.net",
"homepage": "https://www.mygento.ru/"
}
],
"require": {
"magento/framework": "103.*",
"magento/module-integration": "100.*"
},
"require-dev": {
"mygento/coding-standard": "~2.14.0-beta4"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Mygento\\TwoFactorAuth\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com"
}
],
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": false,
"phpro/grumphp": true
}
}
}