-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·61 lines (61 loc) · 1.6 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": "k10r/development",
"description": "Plugin for Shopware 6 development environments",
"version": "1.0.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Kellerkinder GmbH",
"email": "[email protected]",
"homepage": "https://www.kellerkinder.de/",
"role": "Contributor"
}
],
"require": {
"php": "^7.4.3 || ^8.0",
"shopware/core": "^6.4.2.0",
"shopware/administration": "^6.4.2.0",
"shopware/storefront": "^6.4.2.0"
},
"require-dev": {
"k10r/codestyle": "^3.0",
"phpmd/phpmd": "^2.12",
"phpstan/phpstan": "^1.5"
},
"extra": {
"shopware-plugin-class": "K10rDevelopment\\K10rDevelopment",
"copyright": "(c) Kellerkinder GmbH",
"label": {
"de-DE": "Plugin für Entwicklungsumgebungen",
"en-GB": "Plugin for Development Environments"
},
"description": {
"de-DE": "Setzt Dinge für Entwicklungsumgebungen.",
"en-GB": "Adds things for development environments."
},
"manufacturerLink": {
"de-DE": "https://www.kellerkinder.de",
"en-GB": "https://www.kellerkinder.de"
},
"supportLink": {
"de-DE": "https://www.kellerkinder.de",
"en-GB": "https://www.kellerkinder.de"
}
},
"autoload": {
"psr-4": {
"K10rDevelopment\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpcs": "vendor/bin/php-cs-fixer fix",
"phpmd": "vendor/bin/phpmd src xml phpmd.xml",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon src"
}
}