-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.06 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
{
"name": "vienthuong/impersonation",
"description": "A Shopware 6 Impersonation plugin",
"version": "3.0.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Thuong Le",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"VienThuong\\Impersonation\\": "src/"
}
},
"require": {
"shopware/core": "~6.5.0||~6.6.0"
},
"extra": {
"shopware-plugin-class": "VienThuong\\Impersonation\\Impersonation",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by Thuong Le<[email protected]>",
"label": {
"de-DE": "Benutzeridentitäts-Plugin für Shopware 6",
"en-GB": "User Impersonation Plugin for Shopware 6"
},
"description": {
"de-DE": "Erlauben Sie dem Administrator, sich als Benutzer auszugeben",
"en-GB": "Allow administrator to impersonate any user"
}
},
"conflict": {
"shopware/storefront": "<6,>=7",
"shopware/administration": "<6,>=7"
},
"prefer-stable": true
}