silverstripe-fulltextsearch/composer.json

58 lines
1.7 KiB
JSON

{
"name": "silverstripe/fulltextsearch",
"description": "Adds support for Fulltext Search engines like Sphinx and Solr to SilverStripe CMS",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"sphinx",
"solr",
"fulltext"
],
"authors": [
{
"name": "Hamish Friedlander",
"email": "hamish@silverstripe.com"
},
{
"name": "Damian Mooyman",
"email": "damian@silverstripe.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"silverstripe/framework": "^4.10",
"monolog/monolog": "~1.15",
"silverstripe/solr-php-client": "^1.0",
"symfony/process": "^3.4 || ^4",
"tractorcow/silverstripe-proxy-db": "^1",
"ext-curl": "*"
},
"require-dev": {
"silverstripe/cms": "^4.0",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0",
"symbiote/silverstripe-queuedjobs": "^4.9"
},
"autoload": {
"psr-4": {
"SilverStripe\\FullTextSearch\\": "src/",
"SilverStripe\\FullTextSearch\\Tests\\": "tests/"
}
},
"bin": [
"bin/fulltextsearch_quickstart"
],
"extra": [],
"scripts": {
"lint": "phpcs -s src/ tests/",
"lint-clean": "phpcbf src/ tests/"
},
"suggest": {
"symbiote/silverstripe-queuedjobs": "Add background execution of indexing tasks",
"silverstripe/fulltextsearch-localsolr": "Adds a ready-to-use local Solr server for initial development"
},
"minimum-stability": "dev",
"prefer-stable": true
}