-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.87 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.87 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
{
"name": "frosh/tools",
"version": "3.1.0",
"description": "Provides some basic things for managing the Shopware Installation",
"type": "shopware-platform-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"Frosh\\Tools\\": "src/"
}
},
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.com"
}
],
"extra": {
"shopware-plugin-class": "Frosh\\Tools\\FroshTools",
"label": {
"de-DE": "Tools",
"en-GB": "Tools"
},
"description": {
"de-DE": "Die kostenlose Shopware 6 App beinhaltet mehrere Werkzeuge um den Shop besser zu verwalten. Optimierter Cache Manager, Log Viewer um die Logeinträge zu sehen oder Tasks auszuführen.",
"en-GB": "The free Shopware 6 app include several tools to manage the store much better like a cache manager, log viewer to see the log entries, run the tasks or see the system status."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshTools",
"en-GB": "https://github.com/FriendsOfShopware/FroshTools"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshTools/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshTools/issues"
}
},
"require": {
"shopware/core": "~6.6.0 || ~6.7.0"
},
"require-dev": {
"shopware/elasticsearch": "~6.6.0 || ~6.7.0"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"scripts": {
"format": "docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest format /ext",
"check": "docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest check /ext"
}
}