-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
68 lines (68 loc) · 1.88 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
66
67
68
{
"name": "buckaroo/shopware6",
"description": "Buckaroo payment provider plugin for Shopware 6",
"type": "shopware-platform-plugin",
"version": "2.5.0",
"license": "proprietary",
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-fileinfo": "*",
"buckaroo/sdk": "^1.17.1",
"shopware/core": "6.5.*|6.6.*"
},
"authors": [{
"name": "Buckaroo",
"email": "[email protected]",
"homepage": "https://www.buckaroo.nl",
"role": "Developer"
}],
"autoload": {
"psr-4": {
"Buckaroo\\Shopware6\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "Buckaroo\\Shopware6\\BuckarooPayments",
"plugin-icon": "src/Resources/public/plugin.png",
"copyright": "(c) by Buckaroo",
"label": {
"de-DE": "Buckaroo Payment",
"en-GB": "Buckaroo Payment"
},
"description": {
"de-DE": "Buckaroo Payment Plugins",
"en-GB": "Buckaroo Payment Plugin"
},
"manufacturerLink": {
"de-DE": "https://store.shopware.com/buckaroo.html",
"en-GB": "https://store.shopware.com/en/buckaroo.html"
},
"supportLink": {
"de-DE": "https://support.buckaroo.nl/contact",
"en-GB": "https://support.buckaroo.nl/contact"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpstan/phpstan": "^1.9",
"shopware/storefront": "*",
"shopware/administration": "*"
},
"scripts": {
"phpcs": [
"vendor/bin/phpcs ./"
],
"phpstan": [
"vendor/bin/phpstan analyze"
]
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}