mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
4947961d5a
* FIX: #311 Update Symfony process to at least 3.4 * FIX Separate out all command components so Solr_Reindex works in dev mode. Co-authored-by: Kirk Mayo <kirk.mayo@stats.govt.nz> Co-authored-by: GuySartorelli <36352093+GuySartorelli@users.noreply.github.com> Co-authored-by: Kirk Mayo <textagroup@gmail.com> Co-authored-by: Kirk Mayo <kirk.mayo@stats.govt.nz> Co-authored-by: GuySartorelli <36352093+GuySartorelli@users.noreply.github.com>
57 lines
1.6 KiB
JSON
57 lines
1.6 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.3 || ^8.0",
|
|
"silverstripe/framework": "^4.10",
|
|
"monolog/monolog": "~1.15",
|
|
"ptcinc/solr-php-client": "^1.0",
|
|
"symfony/process": "^3.4 || ^4",
|
|
"tractorcow/silverstripe-proxy-db": "~0.1",
|
|
"ext-curl": "*"
|
|
},
|
|
"require-dev": {
|
|
"silverstripe/cms": "^4.0",
|
|
"phpunit/phpunit": "^9.5",
|
|
"squizlabs/php_codesniffer": "^3.0"
|
|
},
|
|
"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
|
|
} |