-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
63 lines (63 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "redchamps/module-clean-admin-menu",
"description": "It will merge all third party extensions menu items to single menu item named 'Extensions'.",
"type": "magento2-module",
"keywords": [
"php",
"magento",
"magento2",
"menu",
"admin",
"ui",
"settings",
"config"
],
"homepage": "https://redchamps.com/clean-admin-menu-magento-2-extension.html",
"readme": "README.md",
"license": [
"MIT"
],
"authors": [
{
"name": "RedChamps",
"email": "[email protected]",
"homepage": "https://redchamps.com/",
"role": "maintainer"
},
{
"name": "Ravinder",
"email": "[email protected]",
"homepage": "https://twitter.com/_iamRav",
"role": "maintainer"
},
{
"name": "Thomas Klein",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/thomas-klein/",
"role": "contributor"
}
],
"support": {
"source": "https://github.com/redchamps/clean-admin-menu/",
"issues": "https://github.com/redchamps/clean-admin-menu/issues/"
},
"require": {
"magento/framework": "^100.0||^101.0||^102.0||^103.0",
"magento/module-backend": "^100.0||^101.0||^102.0",
"magento/module-config": "^100.0||^101.0"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"RedChamps\\CleanMenu\\": ""
}
}
}