forked from ongr-io/ElasticsearchBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.06 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
{
"name": "ongr/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"
}
],
"require": {
"php": ">=5.5",
"symfony/symfony": "~2.7|~3.0",
"doctrine/annotations": "~1.2",
"doctrine/inflector": "~1.0",
"doctrine/cache": "~1.4",
"monolog/monolog": "~1.10",
"elasticsearch/elasticsearch": "^2.1.3",
"ongr/elasticsearch-dsl": "~2.0"
},
"require-dev": {
"mikey179/vfsStream": "~1.4",
"phpunit/phpunit": "~4.4",
"squizlabs/php_codesniffer": "~2.0",
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": { "ONGR\\ElasticsearchBundle\\": "" },
"exclude-from-classmap": ["/Tests/", "/Test/"]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
}
}