-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.65 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.65 KB
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
64
65
66
67
68
69
{
"name": "integer-net/removecustomeraccountlinks",
"type": "magento-module",
"license": "OSL-3.0",
"homepage": "https://github.com/integer-net/RemoveCustomerAccountLinks",
"description": "Removes customer account links in Magento.",
"keywords": ["magento", "customer", "account"],
"authors": [
{
"name": "integer_net GmbH",
"email": "info@integer-net.de",
"homepage": "http://www.integer-net.de/",
"role": "Company"
},
{
"name": "Christian Philipp",
"email": "cp@integer-net.de",
"homepage": "http://www.integer-net.de/",
"role": "Developer"
},
{
"name": "Viktor Franz",
"email": "vf@integer-net.de",
"homepage": "http://www.integer-net.de/",
"role": "Developer"
}
],
"require": {
"magento-hackathon/magento-composer-installer": "*"
},
"extra": {
"map": [
["src/app/code/community/IntegerNet/RemoveCustomerAccountLinks", "app/code/community/IntegerNet/RemoveCustomerAccountLinks"],
["src/app/etc/modules/IntegerNet_RemoveCustomerAccountLinks.xml", "app/etc/modules/IntegerNet_RemoveCustomerAccountLinks.xml"],
["src/app/locale/de_DE/IntegerNet_RemoveCustomerAccountLinks.csv", "app/locale/de_DE/IntegerNet_RemoveCustomerAccountLinks.csv"],
["src/app/locale/en_US/IntegerNet_RemoveCustomerAccountLinks.csv", "app/locale/en_US/IntegerNet_RemoveCustomerAccountLinks.csv"]
],
"magento_connect": {
"name": "IntegerNet_RemoveCustomerAccountLinks",
"license_uri": "http://opensource.org/licenses/osl-3.0.php",
"channel": "community",
"php_min": "5.2.0",
"php_max": "7.9.9",
"stability": "stable",
"content": [
{
"type": "magecommunity",
"structure": "dir",
"path": "IntegerNet/RemoveCustomerAccountLinks"
},
{
"type": "mageetc",
"structure": "file",
"path": "modules/IntegerNet_RemoveCustomerAccountLinks.xml"
},
{
"type": "magelocale",
"structure": "file",
"path": "de_DE/IntegerNet_RemoveCustomerAccountLinks.csv"
},
{
"type": "magelocale",
"structure": "file",
"path": "en_US/IntegerNet_RemoveCustomerAccountLinks.csv"
}
]
}
}
}