-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
99 lines (99 loc) · 3.3 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "heptacom/heptaconnect-bridge-shopware-platform",
"description": "HEPTAconnect package to support a runtime in a shopware platform project",
"license": [
"AGPL-3.0-or-later",
"proprietary"
],
"type": "library",
"version": "0.9.7.0",
"keywords": [
"heptaconnect-bridge",
"shopware-platform"
],
"authors": [
{
"name": "HEPTACOM GmbH"
}
],
"support": {
"issues": "https://github.com/HEPTACOM/heptaconnect-bridge-shopware-platform/issues",
"source": "https://github.com/HEPTACOM/heptaconnect-bridge-shopware-platform",
"docs": "https://heptaconnect.io/",
"rss": "https://heptaconnect.io/news/rss2.xml"
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"bentools/iterable-functions": "^1.4",
"composer/composer": ">=1",
"doctrine/dbal": ">=2.11.0",
"heptacom/heptaconnect-core": "^0.9.6",
"heptacom/heptaconnect-dataset-base": "^0.9.6",
"heptacom/heptaconnect-portal-base": "^0.9.6",
"heptacom/heptaconnect-storage-base": "^0.9.6",
"heptacom/heptaconnect-storage-shopware-dal": "^0.9.1",
"heptacom/heptaconnect-ui-admin-symfony": "^0.9",
"kor3k/flysystem-stream-wrapper": "^1.0.11",
"monolog/monolog": "^1.22 || ^2",
"nyholm/psr7": "^1.2",
"php-http/curl-client": "^2.2",
"php-http/discovery": "^1.0",
"psr/http-message": "^1",
"psr/log": "^1",
"ramsey/uuid": "^3.5 || ^4",
"shopware/core": ">=6.4",
"sourceability/instrumentation": "^0.2.3",
"symfony/config": "^4.4 || ^5.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/event-dispatcher": "^4.4 || ^5.0",
"symfony/http-foundation": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/lock": ">=5.2",
"symfony/messenger": "^4.4 || ^5.0",
"symfony/psr-http-message-bridge": "^2",
"symfony/routing": "^4.4 || ^5.0"
},
"require-dev": {
"heptacom/heptaconnect-framework": "dev-master",
"infection/infection": ">=0.21",
"league/flysystem-memory": ">=1",
"phpunit/phpunit": ">=9.3 <10",
"shopware/storefront": ">=6.2"
},
"suggest": {
"clue/framework-x": "Run a web-server based on ReactPHP",
"heptacom/heptaconnect-portal-local-shopware-platform": "Access the Shopware Platform runtime as a portal",
"psy/psysh": "Run a read–eval–print loop in the scope of a portal-node"
},
"repositories": {
"heptaconnect-sources": {
"type": "path",
"url": "../**"
}
},
"autoload": {
"psr-4": {
"Heptacom\\HeptaConnect\\Bridge\\ShopwarePlatform\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Heptacom\\HeptaConnect\\Bridge\\ShopwarePlatform\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ocramius/package-versions": true,
"php-http/discovery": true
}
},
"extra": {
"unused": [
"php-http/curl-client"
]
},
"homepage": "https://heptaconnect.io"
}