-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.11 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": "heptacom/heptaconnect-storage-shopware-dal",
"description": "HEPTAconnect package to use shopware DAL as underlying storage system",
"license": [
"AGPL-3.0-or-later",
"proprietary"
],
"type": "library",
"version": "0.9.1.1",
"keywords": [
"heptaconnect-storage",
"shopware",
"shopware-platform"
],
"authors": [
{
"name": "HEPTACOM GmbH"
}
],
"support": {
"issues": "https://github.com/HEPTACOM/heptaconnect-storage-shopware-dal/issues",
"source": "https://github.com/HEPTACOM/heptaconnect-storage-shopware-dal",
"docs": "https://heptaconnect.io/",
"rss": "https://heptaconnect.io/news/rss2.xml"
},
"require": {
"php": ">=8.3",
"ext-json": "*",
"ext-zlib": "*",
"bentools/iterable-functions": "^1.4",
"doctrine/dbal": ">=2.11",
"heptacom/heptaconnect-dataset-base": "^0.9.4",
"heptacom/heptaconnect-portal-base": "^0.9.4",
"heptacom/heptaconnect-storage-base": "^0.9.4",
"ramsey/uuid": "^3.5 || ^4",
"shopware/core": ">=6.3"
},
"require-dev": {
"heptacom/heptaconnect-framework": "dev-master",
"infection/infection": ">=0.28",
"phpunit/phpunit": ">=11.2 <12",
"shopware/storefront": ">=6.3"
},
"conflict": {
"nikic/php-parser": "4.7.0"
},
"repositories": {
"heptaconnect-sources": {
"type": "path",
"url": "../**"
}
},
"autoload": {
"psr-4": {
"Heptacom\\HeptaConnect\\Storage\\ShopwareDal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Heptacom\\HeptaConnect\\Storage\\ShopwareDal\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ocramius/package-versions": true,
"php-http/discovery": true
}
},
"extra": {
"unused": [
"bentools/iterable-functions"
]
},
"homepage": "https://heptaconnect.io"
}