-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 2.06 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 2.06 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
{
"name": "swag/demo-data",
"description": "Plugin including demo data",
"version": "2.1.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "shopware AG"
}
],
"require": {
"shopware/core": "~6.6.0 || ~6.7.0"
},
"extra": {
"shopware-plugin-class": "Swag\\PlatformDemoData\\SwagPlatformDemoData",
"plugin-icon": "src/Resources/config/plugin.png",
"copyright": "(c) by shopware AG",
"label": {
"de-DE": "Shopware 6 Demodaten",
"en-GB": "Shopware 6 Demo data"
},
"description": {
"de-DE": "Demodaten Plugin für Shopware 6. Nicht in Produktiv-Umgebungen nutzen! Die Daten werden beim Aktivieren des Plugins importiert und überschreiben bestehende Daten.",
"en-GB": "Demo data plugin for Shopware 6. Do not use in production environments! The data is imported on plugin activation and it will overwritten existing data."
},
"manufacturerLink": {
"de-DE": "https://store.shopware.com/de/extension-partners/shopware-ag",
"en-GB": "https://store.shopware.com/en/extension-partners/shopware-ag"
},
"supportLink": {
"de-DE": "https://docs.shopware.com/de",
"en-GB": "https://docs.shopware.com/en"
}
},
"autoload": {
"psr-4": {
"Swag\\PlatformDemoData\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swag\\PlatformDemoData\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "../../../vendor/bin/php-cs-fixer fix --dry-run",
"cs-fix": "../../../vendor/bin/php-cs-fixer fix",
"phpstan": [
"php ../../../src/Core/DevOps/StaticAnalyze/phpstan-bootstrap.php",
"php bin/phpstan-config-generator.php",
"../../../vendor/bin/phpstan analyze"
],
"phpunit": "../../../vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}