-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.5 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
{
"name": "ratepay/shopware6-module",
"description": "Ratepay payment methods for Shopware 6",
"version": "7.2.0",
"license": "MIT",
"authors": [
{
"name": "Ratepay GmbH"
}
],
"type": "shopware-platform-plugin",
"autoload": {
"psr-4": {
"Ratepay\\RpayPayments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ratepay\\Shopware6\\Tests\\": "tests/"
}
},
"extra": {
"shopware-plugin-class": "Ratepay\\RpayPayments\\RpayPayments",
"copyright": "(c) by Ratepay GmbH",
"plugin-icon": "src/Resources/public/plugin.png",
"label": {
"de-DE": "Ratepay",
"en-GB": "Ratepay"
},
"description": {
"de-DE": "Integration der Ratepay Zahlungsmethoden",
"en-GB": "Integration of the Ratepay payment methods"
},
"manufacturerLink": {
"de-DE": "https://www.ratepay.com",
"en-GB": "https://www.ratepay.com"
},
"supportLink": {
"de-DE": "https://docs.ratepay.com/docs/developer/shop_modules/shopware/shopware_6/ratepay_payment_plugin_for_shopware_6/",
"en-GB": "https://docs.ratepay.com/docs/developer/shop_modules/shopware/shopware_6/ratepay_payment_plugin_for_shopware_6/"
}
},
"require": {
"php": "^8.1",
"ratepay/php-library": "^1.8",
"shopware/core": "~6.6.0",
"ext-simplexml": "*",
"ext-json": "*"
},
"scripts": {
"init-dev-ops": [
"composer req rector/rector symplify/easy-coding-standard phpstan/phpstan --dev --no-scripts --no-plugins -d ../../../"
],
"rector-fix": "../../../vendor/bin/rector process",
"rector-lint": "../../../vendor/bin/rector process --dry-run",
"phpstan-lint": "../../../vendor/bin/phpstan analyse",
"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 ."
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"rector/rector": "^1.1",
"symplify/easy-coding-standard": "^12.2",
"phpunit/phpunit": "^9.6"
}
}