-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.14 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
{
"name": "aternovtsii/search-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for easy integration with elastic/opensearch search engine and doctrine",
"keywords": [
"Opensearch",
"Search",
"Elastic",
"Elasticsearch",
"Doctrine",
"Symfony",
"Bundle"
],
"license": "MIT",
"authors": [
{
"name": "Andrew Ternovtsii",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"murtukov/php-code-generator": "^0.1",
"doctrine/orm": "^3.0",
"symfony/orm-pack": "^2.4",
"symfony/translation-contracts": "^3.4"
},
"suggest": {
"opensearch-project/opensearch-php": "For integration with opensearch search engine",
"elasticsearch/elasticsearch": "For integration with elasticsearch search engine"
},
"autoload": {
"psr-4": {
"ATSearchBundle\\": "src/"
}
}
}