This repository has been archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
68 lines (68 loc) · 2.09 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
{
"name": "heidelpay/shopware-6",
"description": "Heidelpay payment integration for Shopware 6",
"version": "0.0.1.3",
"type": "shopware-platform-plugin",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "heidelpay GmbH, Kellerkinder Pluginwerk GmbH",
"email": "[email protected]",
"homepage": "https://www.heidelpay.com"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2",
"heidelpay/heidelpay-php": "~1.2.8.0",
"shopware/core": "*",
"shopware/administration": "*",
"shopware/storefront": "*"
},
"require-dev": {
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-phpunit": "^0.11",
"phpunit/phpunit": "^8.1",
"k10r/codestyle": "^1.0"
},
"extra": {
"shopware-plugin-class": "HeidelPayment6\\HeidelPayment6",
"plugin-icon": "src/Resources/public/plugin.png",
"copyright": "(c) heidelpay GmbH",
"label": {
"de-DE": "Heidelpay",
"en-GB": "Heidelpay"
},
"description": {
"de-DE": "Heidelpay Zahlungsarten für Shopware 6",
"en-GB": "Heidelpay payment integration for Shopware 6 "
},
"manufacturerLink": {
"de-DE": "https://www.heidelpay.com/de/",
"en-GB": "https://www.heidelpay.com/en/"
},
"supportLink": {
"de-DE": "https://www.heidelpay.com/de/",
"en-GB": "https://www.heidelpay.com/en/"
}
},
"autoload": {
"psr-4": {
"HeidelPayment6\\": "src/"
}
},
"conflict": {
"shopware/storefront": "<6,>=7",
"shopware/administration": "<6,>=7"
},
"scripts": {
"phpcs": "vendor/bin/php-cs-fixer fix",
"phpunit": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon src --autoload-file=../../../vendor/autoload.php",
"phpunit-coverage": "vendor/bin/phpunit --coverage-html ./coverage"
}
}