-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 3.27 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (85 loc) · 3.27 KB
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
80
81
82
83
84
85
{
"name": "werkstattl/openblogware",
"description": "OpenBlogware: A Blog Module for Shopware 6.",
"version": "5.3.0",
"type": "shopware-platform-plugin",
"keywords": ["blog", "news"],
"license":"MIT",
"authors":[
{
"name": "Werkstattl",
"email": "info@werkstattl.com",
"role": "Manufacturer"
}
],
"support": {
"email": "info@werkstattl.com",
"issues": "https://github.com/werkstattl/openblogware/issues",
"docs": "https://github.com/Werkstattl/OpenBlogware/blob/main/README.md"
},
"require": {
"shopware/administration": "~6.7.0",
"shopware/core": "~6.7.0",
"shopware/storefront": "~6.7.0"
},
"require-dev":{
"phpstan/phpstan": "2.1.43",
"phpunit/phpunit": "^11.5.19",
"shopwarelabs/phpstan-shopware": "^0.1.14",
"phpstan/extension-installer": "^1.4"
},
"extra": {
"shopware-plugin-class": "Werkl\\OpenBlogware\\WerklOpenBlogware",
"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": {
"Werkl\\OpenBlogware\\Tests\\Unit\\": "tests/unit/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"code-style:format": "@code-style:format:fix --dry-run",
"code-style:format:fix": "docker run --rm -v %cd%:/ext shopware/shopware-cli:latest extension format /ext",
"code-style:ludtwig": "docker run --rm -v %cd%/src/Resources/views:/work maltejanz/ludtwig:latest .",
"code-style:ludtwig:fix": "@code-style:ludtwig --fix",
"code-style:check": "docker run --rm -v %cd%:/ext shopware/shopware-cli:latest extension validate --full /ext",
"code-style": [
"@code-style:format",
"@code-style:ludtwig",
"@code-style:check"
],
"snippets:check": "comparejson -e -s=\"/\" ./src/**/snippet/*.json && comparejson -e -g=\"(\\w+)\\.[a-z]{2}\\-[A-Z]{2}\\.json$\" ./src/Resources/snippet/*/*.json",
"tests:phpunit": "vendor/bin/phpunit",
"tests": [
"@tests:phpunit"
]
}
}