-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.5 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
{
"name": "basecom/sw6-fixtures-plugin",
"description": "basecom Fixtures Plugin",
"type": "shopware-platform-plugin",
"license": "proprietary",
"authors": [
{
"name": "basecom GmbH & Co. KG",
"email": "info@basecom.de",
"homepage": "https://basecom.de",
"role": "Manufacturer"
}
],
"autoload": {
"psr-4": {
"Basecom\\FixturePlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Basecom\\FixturePlugin\\Tests\\": "tests/"
}
},
"extra": {
"shopware-plugin-class": "Basecom\\FixturePlugin\\BasecomFixturePlugin",
"label": {
"de-DE": "basecom Fixture Plugin",
"en-GB": "basecom Fixture Plugin"
},
"copyright": "(c) basecom GmbH & Co. KG",
"plugin-icon": "src/Resources/config/plugin.png",
"description": {
"de-DE": "Erlaubt das Generieren von Demo-Daten",
"en-GB": "Allows the generation of demo data"
}
},
"require": {
"php": "^8.2 || ^8.3",
"shopware/core": "6.5.*|6.6.*",
"shopware/administration": "6.5.*|6.6.*",
"shopware/storefront": "6.5.*|6.6.*",
"spatie/once": "^3.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.59.3",
"phpstan/phpstan": "^1.10",
"vimeo/psalm": "^5.20"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}