forked from ongr-io/ElasticsearchBundle
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
64 lines (64 loc) · 2.32 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
{
"name": "handcraftedinthealps/elasticsearch-bundle",
"description": "Elasticsearch bundle for Symfony.",
"type": "symfony-bundle",
"homepage": "http://ongr.io",
"license": "MIT",
"authors": [
{
"name": "ONGR team",
"homepage": "http://www.ongr.io"
},
{
"name": "Handcrafted in the Alps Team",
"homepage": "https://github.com/handcraftedinthealps/ElasticsearchBundle/graphs/contributors"
}
],
"require": {
"php": "^7.2|^8.0",
"symfony/framework-bundle": "^2.8|^3.0|^4|^5|^6|^7",
"symfony/console": "^2.8|^3.0|^4|^5|^6|^7",
"symfony/stopwatch": "^2.8|^3.0|^4|^5|^6|^7",
"symfony/templating": "^2.8|^3.0|^4|^5|^6|^7",
"symfony/asset": "^2.8|^3.0|^4|^5|^6|^7",
"doctrine/annotations": "^1.10",
"doctrine/inflector": "^1.0 || ^2.0",
"doctrine/cache": "~1.4",
"doctrine/collections": "^1.4|^2.0",
"monolog/monolog": "^1.10 || ^2.0 || ^3.0",
"handcraftedinthealps/elasticsearch-dsl": "^5.0.7.1|^6.2.0.1|^7.2.0.1",
"symfony/event-dispatcher": "^2.8|^3.0|^4|^5|^6|^7"
},
"require-dev": {
"mikey179/vfsstream": "~1.4",
"squizlabs/php_codesniffer": "^2.0|^3.0",
"symfony/browser-kit" : "^2.8|^3.4|^4|^5|^6|^7",
"symfony/expression-language" : "^2.8|^3.4|^4|^5|^6|^7",
"symfony/twig-bundle": "^2.8|^3.4|^4|^5|^6|^7",
"symfony/serializer": "^2.8|^3.4|^4|^5|^6|^7",
"symfony/yaml": "^2.8|^3.4|^4|^5|^6|^7",
"symfony/phpunit-bridge": "^5.1|^6|^7",
"symfony/dependency-injection": "^2.8|^3.4|^4|^5|^6|^7",
"symfony/validator": "^2.8|^3.4|^4|^5|^6|^7",
"symfony/options-resolver": "^2.8|^3.4|^4|^5|^6|^7"
},
"autoload": {
"psr-4": { "ONGR\\ElasticsearchBundle\\": "" },
"exclude-from-classmap": ["/Tests/", "/Test/"]
},
"conflict": {
"handcraftedinthealps/elasticsearch-dsl": "6.0 - 6.1.1 || 7.0 - 7.1.1",
"ongr/elasticsearch-dsl": "6.0 - 6.1.1 || 7.0 - 7.1.1"
},
"replace": {
"ongr/elasticsearch-bundle": "self.version"
},
"minimum-stability": "dev",
"extra": {
"symfony": {
"recipe-contrib": false,
"allow-contrib": false,
"require": "7.1.*"
}
}
}