mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
58 lines
1.7 KiB
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": "^8.1",
|
|
"silverstripe/framework": "^5",
|
|
"monolog/monolog": "^3.2",
|
|
"silverstripe/solr-php-client": "^1",
|
|
"symfony/process": "^6.2",
|
|
"silverstripe/silverstripe-proxy-db": "^2",
|
|
"ext-curl": "*"
|
|
},
|
|
"require-dev": {
|
|
"silverstripe/cms": "^5",
|
|
"phpunit/phpunit": "^9.5",
|
|
"squizlabs/php_codesniffer": "^3",
|
|
"symbiote/silverstripe-queuedjobs": "^5"
|
|
},
|
|
"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
|
|
} |