-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 2.15 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
62
63
64
65
{
"name": "raffaelecarelle/shopware-plugin-skeleton-generator",
"description": "A tool to generate a standardized skeleton structure for developing Shopware plugins, enabling developers to quickly start and streamline the development process.",
"type": "shopware-platform-plugin",
"version": "1.0.6",
"license": "MIT",
"authors": [
{
"name": "Raffaele Carelle",
"email": "[email protected]"
}
],
"require": {
"roave/better-reflection": "^6.54",
"shopware/administration": "v6.6.9.0",
"shopware/core": "v6.6.9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"frosh/shopware-rector": "^0.5",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan-phpunit": "^2.0.4",
"phpstan/phpstan-strict-rules": "^2.0.3",
"phpunit/phpunit": "^11.4.2",
"shopwarelabs/phpstan-shopware": "^0.1.3"
},
"autoload": {
"psr-4": {
"ShopwarePluginSkeletonGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/Fixtures/App/",
"ShopwarePluginSkeletonGenerator\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/runtime": true
}
},
"extra": {
"shopware-plugin-class": "ShopwarePluginSkeletonGenerator\\PluginSkeletonGenerator",
"label": {
"de-DE": "PluginSkeletonGenerator",
"en-GB": "PluginSkeletonGenerator"
},
"description": {
"de-DE": "",
"en-GB": ""
},
"manufacturerLink": {
"de-DE": "https://github.com/raffaelecarelle",
"en-GB": "https://github.com/raffaelecarelle"
},
"supportLink": {
"de-DE": "https://github.com/raffaelecarelle/shopware-plugin-skeleton-generator/issues",
"en-GB": "https://github.com/raffaelecarelle/shopware-plugin-skeleton-generator/issues"
}
}
}