forked from mkalkbrenner/search_api_solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.52 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
{
"name": "drupal/search_api_solr",
"description": "Offers an implementation of the Search API that uses an Apache Solr server for indexing content.",
"type": "drupal-module",
"homepage": "https://www.drupal.org/project/search_api_solr",
"license": "GPL-2.0+",
"authors": [
{
"name": "Markus Kalkbrenner",
"homepage": "https://www.drupal.org/u/mkalkbrenner"
},
{
"name": "Other contributors",
"homepage":"https://www.drupal.org/node/982682/committers"
}
],
"support": {
"issues": "https://www.drupal.org/project/issues/search_api_solr",
"irc": "irc://irc.freenode.org/drupal-search-api",
"source": "http://git.drupal.org/project/search_api_solr.git"
},
"require": {
"php": "^7.0",
"ext-json": "*",
"maennchen/zipstream-php": "0.4.*",
"solarium/solarium": "~4.1.0",
"drupal/search_api": "~1.9"
},
"require-dev": {
"phayes/geophp": "^1.2",
"drupal/facets": "1.x-dev",
"drupal/geofield": "1.x-dev",
"drupal/search_api_autocomplete": "1.x-dev",
"drupal/search_api_location": "1.x-dev"
},
"conflict": {
"drupal/search_api_solr_multilingual": "*",
"drupal/core": "<8.5"
},
"suggest": {
"drupal/facets": "Provides facetted search.",
"drupal/search_api_autocomplete": "Provides auto complete for search boxes.",
"drupal/search_api_location": "Provides location searches."
}
}