v1/web/modules/contrib/search_api_solr/composer.json

63 lines
2.2 KiB
JSON

{
"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.4",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"drupal/search_api": "~1.28",
"composer/semver": "^1.0|^3.0",
"consolidation/annotated-command": "^2.12|^4.1",
"maennchen/zipstream-php": "^2.2.1",
"solarium/solarium": "^6.2.8",
"laminas/laminas-stdlib": "^3.2"
},
"require-dev": {
"monolog/monolog": "^1.25|^3",
"drupal/devel": "^4.0|^5.0",
"drupal/facets": "^3.0.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"
}
}
}
}