-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 895 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
{
"name": "allekslar/module-generator",
"description": "Creates the structure for new administration module",
"type": "shopware-platform-plugin",
"version": "1.0.0",
"license": "MIT",
"authors": [
{
"name": "allekslar"
}
],
"autoload": {
"psr-4": {
"AllekslarModuleGenerator\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "AllekslarModuleGenerator\\AllekslarModuleGenerator",
"label": {
"de-DE": "Administrations modul-generator Shopware 6",
"en-GB": "administration module-generator Shopware 6"
},
"description": {
"de-DE": "Erstellt die Struktur für das neue Administrationsmodul Shopware 6",
"en-GB": "Creates the structure for new administration module Shopware 6 "
},
"supportLink": {
"de-DE": "https://github.com/Allekslar",
"en-GB": "https://github.com/Allekslar"
}
}
}