-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 3.56 KB
/
Copy pathcomposer.json
File metadata and controls
95 lines (95 loc) · 3.56 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "kiener/mollie-payments-plugin",
"description": "Mollie Payments",
"version": "v5.2.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Mollie B.V."
}
],
"extra": {
"shopware-plugin-class": "Kiener\\MolliePayments\\MolliePayments",
"copyright": "(c) by Mollie B.V.",
"label": {
"de-DE": "Mollie Zahlungen",
"en-GB": "Mollie Payments",
"nl-NL": "Mollie Betalingen"
},
"description": {
"de-DE": "Mit Mollie integrieren Sie alle wichtigen internationalen und lokalen Zahlungsmethoden in nur einem Schritt in Ihren Shopware-Webshop. Starten Sie noch heute!",
"en-GB": "With Mollie you integrate every major global and local payment method in your Shopware webshop in one go. Start growing your business with effortless payments today!",
"nl-NL": "Met Mollie integreer je alle belangrijke internationale en lokale betaalmethoden in \u00e9\u00e9n keer in je Shopware webshop. Start vandaag nog!"
},
"manufacturerLink": {
"de-DE": "https://store.shopware.com/mollie.html",
"en-GB": "https://store.shopware.com/mollie.html",
"nl-NL": "https://store.shopware.com/mollie.html"
},
"supportLink": {
"de-DE": "https://www.mollie.com/contact",
"en-GB": "https://www.mollie.com/contact",
"nl-NL": "https://www.mollie.com/contact"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"infection/extension-installer": true,
"php-http/discovery": true,
"symfony/runtime": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"audit": {
"block-insecure": false
}
},
"autoload": {
"psr-4": {
"Mollie\\Shopware\\": "shopware/",
"Kiener\\MolliePayments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mollie\\Shopware\\Unit\\": "tests/Unit/",
"Mollie\\Shopware\\Integration\\": "tests/Integration/",
"Mollie\\Shopware\\Behat\\": "tests/Behat/",
"MolliePayments\\Shopware\\PHPStan\\": "tests/PHPStan/"
}
},
"suggest": {
"shopware/storefront": "Require '*'. Enables features like Creditcard Components and iDeal issuer selector.",
"shopware/administration": "Require '*'. Enables features like partial shipping and refunding."
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"shopware/core": ">=6.5.8.0 <6.8",
"ext-mbstring": "*"
},
"require-dev": {
"shopware/storefront": ">=6.5.8.0 <6.8",
"phpunit/phpunit": ">=10",
"phpstan/phpstan": "^2",
"friendsofphp/php-cs-fixer": "^3",
"phpcompatibility/php-compatibility": "^9",
"squizlabs/php_codesniffer": "^3",
"boxblinkracer/phpunuhi": "dev-main",
"spaze/phpstan-disallowed-calls": "^4",
"behat/behat": "^3",
"behat/gherkin": "^4",
"phpstan/phpstan-phpunit": "^2.0",
"ext-fileinfo": "*",
"ext-dom": "*"
},
"scripts": {
"post-install-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
],
"post-update-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
]
}
}