-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.49 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"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 ||^8.4",
"shopware/core": "6.5.*|6.6.*|6.7.*",
"shopware/administration": "6.5.*|6.6.*|6.7.*",
"shopware/storefront": "6.5.*|6.6.*|6.7.*",
"spatie/once": "^3.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.92.4",
"phpstan/phpstan": "^2.1.17"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}