-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 loc) · 1.93 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
{
"name": "brianvarskonst/bvsk-plugin-boilerplate",
"description": "A Boilerplate Plugin for Shopware 6 Plugin Development",
"version": "1.0.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "brianvarskonst",
"email": "brianvar.skonst@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.1.3",
"shopware/core": "6.0.0+ea1.1"
},
"require-dev": {},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"shopware-plugin-class": "Bvsk\\PluginBoilerplate\\BvskPluginBoilerplate",
"copyright": "(c) by brianvarskonst",
"label": {
"de-DE": "Plugin BoilerplatePlugin für Shopware 6",
"en-GB": "Plugin BoilerplatePlugin for Shopware 6"
},
"description": {
"de-DE": "Beschreibung für das Plugin BoilerplatePlugin",
"en-GB": "Description for the plugin BoilerplatePlugin"
},
"manufacturerLink": {
"de-DE": "https://store.example.dev/example-dev.html",
"en-GB": "https://store.example.dev/en/example-dev.html"
},
"supportLink": {
"de-DE": "https://docs.example.dev/de",
"en-GB": "https://docs.example.dev/en"
}
},
"autoload": {
"psr-4": {
"Bvsk\\PluginBoilerplate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bvsk\\PluginBoilerplate\\Tests\\": "tests/"
}
},
"suggest": {
"shopware/storefront": "Require '6.0.0+ea1.1'. Enables special payment features like 'Smart Payment Buttons' or 'Express Checkout'",
"shopware/administration": "Require '6.0.0+ea1.1'. Allows you to to set up the plugin easily"
},
"conflict": {
"shopware/storefront": "<6,>=7",
"shopware/administration": "<6,>=7"
}
}