forked from doctrine/search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.22 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
{
"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.",
"nette/neon": "Neon is a developer friendly format for config files, similar to YAML."
},
"require-dev": {
"doctrine/orm": "~2.4",
"jms/serializer": "~0.16",
"ruflin/elastica": "~1.3.0",
"nette/neon": "~2.2",
"phpunit/phpunit": "~4.2"
},
"autoload": {
"psr-0": {
"Doctrine\\Search": "lib/"
},
"classmap": [
"lib/Doctrine/Search/exceptions.php"
]
},
"autoload-dev": {
"psr-0": {
"Doctrine\\Tests\\Search": "tests/",
"Doctrine\\Tests\\Models": "tests/"
}
}
}