-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.92 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
{
"name": "billie/shopware6-payment-module",
"description": "Billie payment for Shopware 6",
"version": "3.1.1",
"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": "~8.1.0 || ~8.2.0 || ~8.3.0",
"shopware/core": "~6.6.0",
"billie/api-php-sdk": "^3.1"
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"rector/rector": "^1.2",
"symplify/easy-coding-standard": "^12.3"
},
"scripts": {
"rector-fix": "./vendor/bin/rector process --autoload-file ../../../vendor/autoload.php",
"rector-lint": "./vendor/bin/rector process --dry-run --autoload-file ../../../vendor/autoload.php",
"phpstan-lint": "./vendor/bin/phpstan analyse --autoload-file ../../../vendor/autoload.php",
"code-style-fix": "./vendor/bin/ecs --fix",
"code-style-lint": "./vendor/bin/ecs",
"lint": [
"@rector-lint",
"@phpstan-lint",
"@code-style-lint"
],
"fix": [
"@rector-fix",
"@code-style-fix"
],
"release": "shopware-cli extension zip . --disable-git --release",
"build": "shopware-cli extension build ."
}
}