-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.52 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
{
"name": "jbl/env-switcher-shopware6",
"description": "A Simple Plug-In which allows the shop administrator to switch between dev <-> prod mode without touching .env file.",
"type": "shopware-platform-plugin",
"version": "1.0.0",
"authors": [
{
"name": "Jeffry Block",
"homepage": "https://www.jeffblock.de"
}
],
"require": {
"shopware/core": "~6.5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.0",
"phpstan/phpstan": "^0.12.18"
},
"scripts": {
"cs-fixer": "php-cs-fixer fix",
"phpstan": "phpstan analyse"
},
"license": "MIT",
"autoload": {
"psr-4": {
"JblEnvSwitcher\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "JblEnvSwitcher\\JblEnvSwitcher",
"copyright": "(c) by Jeffry Block",
"label": {
"de-DE": "Schnelles wechseln der Umgebung",
"en-GB": "Quick environment switcher"
},
"description": {
"de-DE": "Einfaches Plug-In welches es dem Administrator erlaubt, schnell zwischen dev <-> live modus zu wechseln, ohne die .env Datei editieren zu müssen.",
"en-GB": "A Simple Plug-In which allows the shop administrator to switch between dev <-> prod mode without touching .env file."
},
"manufacturerLink": {
"de-DE": "https://github.com/gainto",
"en-GB": "https://github.com/gainto"
},
"supportLink": {
"de-DE": "https://github.com/gainto",
"en-GB": "https://github.com/gainto"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}