-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.16 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
{
"name": "nzo/elastic-query-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle used to execute search based on simple query language for the Elasticsearch system",
"keywords": ["search", "data", "elasticsearch", "query", "language"],
"license": "MIT",
"authors": [
{
"name": "Ala Eddine Khefifi",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Nzo\\ElasticQueryBundle\\": "" }
},
"require": {
"php": ">=7.2.5",
"ext-json": "*",
"doctrine/orm": "^2.6",
"doctrine/persistence": "^1.0|^2.0",
"friendsofsymfony/elastica-bundle": "^6.0.0-beta4",
"justinrainbow/json-schema": "^5.2",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/options-resolver": "^4.4|^5.0",
"symfony/security-core": "^4.4|^5.2.8",
"symfony/serializer": "^4.4|^5.0",
"symfony/string": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0"
},
"config": {
"sort-packages": true
}
}