forked from mkalkbrenner/search_api_solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 2.27 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
{
"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-or-later",
"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",
"chat": "https://drupalchat.me/channel/search",
"source": "http://git.drupal.org/project/search_api_solr.git"
},
"require": {
"php": "^7.3|^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"drupal/search_api": "~1.23",
"composer/semver": "^1.0|^3.0",
"consolidation/annotated-command": "^2.12|^4.1",
"maennchen/zipstream-php": "^1.2|^2.0",
"solarium/solarium": "^6.2.3",
"laminas/laminas-stdlib": "^3.2"
},
"require-dev": {
"phayes/geophp": "^1.2",
"monolog/monolog": "^1.25",
"drupal/devel": "^4.0",
"drupal/facets": "1.x-dev",
"drupal/geofield": "1.x-dev",
"drupal/search_api_autocomplete": "1.x-dev",
"drupal/search_api_location": "1.x-dev",
"drupal/search_api_spellcheck": "3.x-dev"
},
"conflict": {
"drupal/acquia_search_solr": "<1.0.0-beta8",
"drupal/search_api_autocomplete": "<1.6.0",
"drupal/search_api_solr_multilingual": "<3.0.0"
},
"suggest": {
"drupal/facets": "Provides facetted search.",
"drupal/search_api_autocomplete": "Provides auto complete for search boxes.",
"drupal/search_api_location": "Provides location searches.",
"drupal/search_api_spellcheck": "Provides spell checking and 'Did You Mean?'.",
"drupal/search_api_solr_nlp": "Highly recommended! Provides Solr field types based on natural language processing (NLP)."
},
"extra": {
"drush": {
"services": {
"drush.services.yml": "^9 || ^10"
}
}
}
}