-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
39 lines (39 loc) · 950 Bytes
/
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
{
"name": "pimcore/advanced-object-search",
"license": "GPL-3.0+",
"type": "pimcore-bundle",
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"handcraftedinthealps/elasticsearch-dsl": "^8.0",
"pimcore/opensearch-client": "^1.1",
"pimcore/elasticsearch-client": "^1.1",
"pimcore/pimcore": "^11.5",
"symfony/config": "^6.2",
"symfony/console": "^6.2",
"symfony/dependency-injection": "^6.2",
"symfony/event-dispatcher": "^6.2",
"symfony/http-foundation": "^6.3",
"symfony/http-kernel": "^6.2",
"symfony/messenger": "^6.2",
"symfony/routing": "^6.2"
},
"require-dev": {
"phpstan/phpstan": "^1.9.11"
},
"autoload": {
"psr-4": {
"AdvancedObjectSearchBundle\\": "src/"
}
},
"extra": {
"pimcore": {
"bundles": [
"AdvancedObjectSearchBundle\\AdvancedObjectSearchBundle"
]
}
}
}