forked from fprochazka/doctrine-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 972 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
{
"name": "doctrine/search",
"description": "Search",
"keywords": ["elasticsearch", "solr", "lucene", "search", "odm", "orm"],
"homepage": "https://github.com/doctrine/search",
"type": "library",
"licence": "MIT",
"authors": [
{
"name": "Doctrine Search Community",
"homepage": "https://github.com/doctrine/search/graphs/contributors"
}
],
"require": {
"php": ">=5.3.2",
"doctrine/common": ">=2.3.0"
},
"suggest": {
"ruflin/Elastica": "Elastica version correlating to your ElasticSearch installation is required."
},
"require-dev": {
"doctrine/orm": "~2.4",
"phpunit/phpunit": "~4.2"
},
"autoload": {
"psr-0": {
"Doctrine\\Search": "lib/"
}
},
"autoload-dev": {
"psr-0": {
"Doctrine\\Tests\\Search": "tests/",
"Doctrine\\Tests\\Models": "tests/"
}
}
}