-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.23 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
80
{
"name": "heptacom/heptaconnect-lib-sdk",
"description": "Library for the Software Development Kit for HEPTAconnect",
"license": [
"AGPL-3.0-or-later",
"proprietary"
],
"type": "library",
"version": "0.8.1",
"keywords": [
"heptaconnect",
"development",
"sdk"
],
"authors": [
{
"name": "HEPTACOM GmbH"
}
],
"support": {
"issues": "https://github.com/HEPTACOM/heptaconnect-lib-sdk/issues",
"source": "https://github.com/HEPTACOM/heptaconnect-lib-sdk",
"docs": "https://connect.heptacom.de/",
"rss": "https://connect.heptacom.de/feed/rss2.xml"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"bentools/iterable-functions": "^1.4",
"composer/composer": ">=1",
"composer/package-versions-deprecated": "^1.8",
"doctrine/dbal": ">=2.1",
"friendsofphp/php-cs-fixer": "^2.16",
"heptacom/heptaconnect-bridge-shopware-platform": "^0.8",
"heptacom/heptaconnect-core": "^0.8",
"heptacom/heptaconnect-portal-base": "^0.8",
"heptacom/heptaconnect-storage-base": "^0.8",
"psy/psysh": "@stable",
"shopware/administration": "~6.4",
"shopware/core": "~6.4",
"shopware/storefront": "~6.4",
"symfony/config": "^4.4 || ^5.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/process": "^4.4 || ^5.0"
},
"require-dev": {
"infection/infection": ">=0.21",
"phpunit/phpunit": ">=9.3 <10"
},
"conflict": {
"nikic/php-parser": "4.7.0"
},
"repositories": {
"heptaconnect-sources": {
"type": "path",
"url": "../**"
}
},
"autoload": {
"psr-4": {
"Heptacom\\HeptaConnect\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Heptacom\\HeptaConnect\\Test\\": "test/"
}
},
"bin": [
"bin/heptaconnect-sdk"
],
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
},
"website": "https://heptaconnect.io"
}