-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
46 lines (46 loc) · 1.26 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
{
"name": "shopware/elasticsearch",
"description": "Elasticsearch for Shopware",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Shopware\\Elasticsearch\\": ""
},
"exclude-from-classmap": [
"/Test/"
]
},
"config": {
"sort-packages": true
},
"support": {
"issues": "https://github.com/shopware/shopware/issues/",
"forum": "https://forum.shopware.com",
"wiki": "https://developer.shopware.com",
"docs": "https://developer.shopware.com",
"chat": "https://slack.shopware.com"
},
"extra": {
"branch-alias": {
"dev-master": "6.6.x-dev",
"dev-trunk": "6.6.x-dev"
}
},
"minimum-stability": "stable",
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-curl": "*",
"async-aws/core": "^1.22",
"doctrine/dbal": "^3.9",
"monolog/monolog": "^3.3.1",
"opensearch-project/opensearch-php": "^2.3.1",
"shopware/core": "dev-trunk",
"shyim/opensearch-php-dsl": "^1.0.5",
"symfony/http-foundation": "~7.2.0",
"symfony/messenger": "~7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5.38"
}
}