forked from ozean12/shopware6-payment-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.14 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
{
"name": "billie/shopware6-payment-module",
"description": "Billie payment for Shopware 6",
"version": "1.0.0",
"license": "MIT",
"authors": [
{
"name": "Billie GmbH"
}
],
"type": "shopware-platform-plugin",
"autoload": {
"psr-4": {
"Billie\\BilliePayment\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "Billie\\BilliePayment\\BilliePaymentSW6",
"copyright": "(c) by Billie GmbH",
"plugin-icon": "src/Resources/public/plugin.png",
"label": {
"de-DE": "B2B-Rechnungskauf",
"en-GB": "B2B-Invoicing"
},
"description": {
"de-DE": "B2B-Rechnungskauf",
"en-GB": "B2B-Invoicing"
},
"manufacturerLink": {
"de-DE": "https://www.billie.io/",
"en-GB": "https://www.billie.io/"
}
},
"require": {
"php": "^7.2 || ^8.0",
"shopware/core": "^6.3.0 || ^6.4.0",
"billie/api-php-sdk": "^2.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"friendsofphp/php-cs-fixer": "^2.18"
}
}