forked from PAYONE-GmbH/shopware-6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 1.89 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
{
"name": "payone-gmbh/shopware-6",
"type": "shopware-platform-plugin",
"description": "PAYONE Payment Plugin",
"version": "3.0.0",
"license": "MIT",
"authors": [
{
"name": "PAYONE GmbH",
"email": "[email protected]",
"homepage": "https://www.payone.com"
},
{
"name": "Kellerkinder GmbH",
"email": "[email protected]",
"homepage": "https://www.kellerkinder.de",
"role": "Contributor"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"ext-curl": "*",
"ext-json": "*",
"sinergi/browser-detector": "^6.1",
"shopware/core": ">= 6.3",
"shopware/administration": ">= 6.3",
"shopware/storefront": ">= 6.3"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.3.0",
"k10r/codestyle": "^1.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "9.5.2"
},
"autoload": {
"psr-4": {
"PayonePayment\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PayonePayment\\Test\\": "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": {
"phpcs": "./vendor/bin/php-cs-fixer fix",
"phpstan": "./vendor/bin/phpstan analyse src tests -a ../../../vendor/autoload.php",
"phpunit": "./../../../vendor/bin/phpunit"
}
}