-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
49 lines (49 loc) · 1.8 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
{
"name": "frosh/tools",
"version": "2.4.3",
"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"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"scripts": {
"cs-fix": "docker run --rm -v $(pwd):$(pwd) -w $(pwd) oskarstark/php-cs-fixer-ga --rules=@PER-CS2.0,no_unused_imports .",
"phpstan": "docker run --rm -v $(pwd):/app aragon999/phpstan-shopware:v6.6.0 analyse --level max ."
}
}