-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
88 lines (88 loc) · 2.63 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
81
82
83
84
85
86
87
88
{
"name": "heptacom/heptaconnect-package-shopware-6",
"description": "HEPTAconnect package to work with Shopware 6 APIs",
"license": [
"AGPL-3.0-or-later",
"proprietary"
],
"type": "library",
"keywords": [
"heptaconnect-package",
"shopware",
"shopware 6",
"ecommerce"
],
"authors": [
{
"name": "HEPTACOM GmbH"
}
],
"support": {
"issues": "https://github.com/HEPTACOM/heptaconnect-package-shopware-6/issues",
"source": "https://github.com/HEPTACOM/heptaconnect-package-shopware-6",
"docs": "https://heptaconnect.io/",
"rss": "https://heptaconnect.io/news/rss2.xml"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"heptacom/heptaconnect-dataset-base": ">=0.9.4 <0.10",
"psr/container": ">=1 <3",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/simple-cache": "@stable",
"psr/simple-cache-implementation": "*",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/polyfill-php80": "*"
},
"require-dev": {
"ext-gd": "*",
"ext-zip": "*",
"infection/infection": ">=0.21",
"nyholm/psr7": "^1.5",
"php-http/curl-client": ">=2 <3",
"php-http/discovery": "^1.11",
"phpunit/phpunit": ">=9.3 <10",
"symfony/cache": ">=5.4 <7",
"voku/simple-cache": ">=4 <5"
},
"conflict": {
"nikic/php-parser": "4.7.0"
},
"suggest": {
"heptacom/heptaconnect-portal-base": "Add ability to act as HEPTAconnect package for good integration into portals https://heptaconnect.io/",
"symfony/cache": "psr/simple-cache implementation, that is likely already in your project",
"voku/simple-cache": "psr/simple-cache implementation without further dependencies"
},
"repositories": {
"heptaconnect-sources": {
"type": "path",
"url": "../**"
}
},
"autoload": {
"psr-4": {
"Heptacom\\HeptaConnect\\Package\\Shopware6\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Heptacom\\HeptaConnect\\Package\\Shopware6\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ocramius/package-versions": true,
"php-http/discovery": true
}
},
"extra": {
"unused": [
"symfony/polyfill-php80"
]
},
"homepage": "https://heptaconnect.io"
}