-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
79 lines (79 loc) · 2.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "werkstattl/openblogware",
"description": "OpenBlogware: A Blog Module for Shopware 6.",
"version": "4.2.0",
"type": "shopware-platform-plugin",
"keywords": ["blog", "news"],
"license":"MIT",
"authors":[
{
"name": "Werkstattl",
"email": "[email protected]",
"role": "Manufacturer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/werkstattl/openblogware/issues",
"docs": "https://github.com/Werkstattl/OpenBlogware/blob/main/README.md"
},
"require": {
"shopware/core": "^6.6.7",
"shopware/administration": "^6.6.7",
"shopware/storefront": "^6.6.7"
},
"require-dev":{
"phpunit/phpunit": "^9.5",
"symplify/easy-coding-standard": "^12.1.14",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.16",
"phpstan/phpstan": "^1.10",
"phpcompatibility/php-compatibility": "^9.3",
"infection/infection": "^0.29.6"
},
"extra": {
"shopware-plugin-class": "Werkl\\OpenBlogware\\WerklOpenBlogware",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by SMK Shape & Shift LTD and Werkstattl",
"label": {
"de-DE": "OpenBlogware",
"en-GB": "OpenBlogware"
},
"description": {
"de-DE": "Dieses Plugin fügt Ihrem Shopware-Shop eine leistungsstarke Blog-Funktionalität hinzu. Erstellen, verwalten und veröffentlichen Sie ganz einfach Blog-Posts und -Seiten.",
"en-GB": "This plugin adds a powerful blog functionality to your Shopware store. Easily create, manage, and publish blog posts and pages, and engage customers with content marketing."
},
"manufacturerLink": {
"en-GB": "https://werkstattl.com",
"de-DE": "https://werkstattl.com"
},
"supportLink": {
"de-DE": "https://github.com/werkstattl/openblogware/issues",
"en-GB": "https://github.com/werkstattl/openblogware/issues"
},
"attribution": "This project is based on the work of Shape & Shift (ChristopherDosin/Shopware-6-Blog-Plugin)."
},
"autoload": {
"psr-4": {
"Werkl\\OpenBlogware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenBlogware\\Tests\\": "tests/PHPUnit/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"infection/extension-installer": true
}
},
"scripts": {
"post-install-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
],
"post-update-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
]
}
}