forked from PAYONE-GmbH/shopware-6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 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
{
"name": "payone-gmbh/shopware-6",
"type": "shopware-platform-plugin",
"description": "PAYONE Payment Plugin",
"version": "4.1.0",
"license": "MIT",
"authors": [
{
"name": "PAYONE GmbH",
"email": "[email protected]",
"homepage": "https://www.payone.com"
},
{
"name": "Interlutions GmbH",
"email": "[email protected]",
"homepage": "https://www.interlutions.de",
"role": "Contributor"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"ext-curl": "*",
"ext-json": "*",
"sinergi/browser-detector": "^6.1",
"shopware/core": ">= 6.4",
"shopware/administration": ">= 6.4",
"shopware/storefront": ">= 6.4"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.3.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.11",
"phpstan/phpstan": "1.8.0",
"phpstan/phpstan-phpunit": "1.1.1",
"phpstan/phpstan-symfony": "1.2.5",
"phpunit/phpunit": "^9.5",
"symplify/easy-coding-standard": "^10.0"
},
"autoload": {
"psr-4": {
"PayonePayment\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PayonePayment\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"shopware-plugin-class": "PayonePayment\\PayonePayment",
"plugin-icon": "src/Resources/public/plugin.png",
"copyright": "(c) by PAYONE GmbH",
"label": {
"de-DE": "PAYONE Payment",
"en-GB": "PAYONE Payment"
},
"description": {
"de-DE": "PAYONE Payment Plugin",
"en-GB": "PAYONE Payment Plugin"
},
"manufacturerLink": {
"de-DE": "https://www.payone.com",
"en-GB": "https://www.payone.com"
},
"supportLink": {
"de-DE": "https://www.payone.com",
"en-GB": "https://www.payone.com"
}
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse -n --no-progress",
"phpunit": "./../../../vendor/bin/phpunit",
"ecs": "ecs check src tests",
"ecs-fix": "ecs check --fix src tests"
}
}