forked from mollie/Shopware6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 3.2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "kiener/mollie-payments-plugin",
"description": "Mollie Payments",
"version": "v3.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
}
},
"autoload": {
"psr-4": {
"Kiener\\MolliePayments\\": "src/",
"Mollie\\Api\\": "vendor/mollie/mollie-api-php/src/"
}
},
"autoload-dev": {
"psr-4": {
"MolliePayments\\Tests\\": "tests/PHPUnit/",
"MolliePayments\\PHPStan\\": "tests/PHPStan/",
"MolliePayments\\Fixtures\\": "tests/Fixtures/"
}
},
"suggest": {
"shopware/storefront": "Require '*'. Enables features like Creditcard Components and iDeal issuer selector.",
"shopware/administration": "Require '*'. Enables features like partial shipping and refunding."
},
"conflict": {
"shopware/storefront": "<6,>=7",
"shopware/administration": "<6,>=7"
},
"require": {
"mollie/mollie-api-php": "2.40.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "1.8.2",
"friendsofphp/php-cs-fixer": "^2.18",
"phpcompatibility/php-compatibility": "^9.3",
"squizlabs/php_codesniffer": "^3.6",
"infection/infection": "^0.25.4",
"shopware/core": "*",
"shopware/administration": "*",
"shopware/storefront": "*"
},
"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"
]
}
}