-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.07 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.07 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "buckaroo/shopware6",
"description": "Buckaroo payment provider plugin for Shopware 6",
"type": "shopware-platform-plugin",
"version": "3.3.0",
"license": "proprietary",
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-fileinfo": "*",
"buckaroo/sdk": "^1.23.2",
"shopware/core": "6.5.0.0 - 6.7.6.0"
},
"authors": [{
"name": "Buckaroo",
"email": "support@buckaroo.nl",
"homepage": "https://www.buckaroo.nl",
"role": "Developer"
}],
"autoload": {
"psr-4": {
"Buckaroo\\Shopware6\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Buckaroo\\Shopware6\\Tests\\": "tests/"
}
},
"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": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "*",
"phpstan/phpstan": "^1.9",
"shopware/storefront": "*",
"shopware/administration": "*",
"deployer/deployer": "^7.3"
},
"scripts": {
"phpcs": [
"vendor/bin/phpcs ./"
],
"phpstan": [
"vendor/bin/phpstan analyze"
]
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}