2012-11-03 12:31:41 +13:00
|
|
|
{
|
2016-11-17 10:15:58 +13:00
|
|
|
"name": "silverstripe/fulltextsearch",
|
|
|
|
"description": "Adds support for Fulltext Search engines like Sphinx and Solr to SilverStripe CMS",
|
2017-11-15 09:43:36 +13:00
|
|
|
"type": "silverstripe-vendormodule",
|
|
|
|
"license": "BSD-3-Clause",
|
2016-11-17 10:15:58 +13:00
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"sphinx",
|
|
|
|
"solr",
|
|
|
|
"fulltext"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Hamish Friedlander",
|
|
|
|
"email": "hamish@silverstripe.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Damian Mooyman",
|
|
|
|
"email": "damian@silverstripe.com",
|
2016-08-02 18:20:20 +12:00
|
|
|
"role": "Developer"
|
2016-11-17 10:15:58 +13:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2022-12-12 15:22:01 +13:00
|
|
|
"php": "^8.1",
|
|
|
|
"silverstripe/framework": "^5",
|
|
|
|
"monolog/monolog": "^3.2",
|
2023-01-20 12:50:48 +13:00
|
|
|
"silverstripe/solr-php-client": "^1",
|
2022-12-12 15:22:01 +13:00
|
|
|
"symfony/process": "^6.2",
|
|
|
|
"silverstripe/silverstripe-proxy-db": "^2",
|
2022-02-01 14:02:48 +13:00
|
|
|
"ext-curl": "*"
|
2016-11-17 10:15:58 +13:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2022-12-12 15:22:01 +13:00
|
|
|
"silverstripe/cms": "^5",
|
2021-11-02 14:48:12 +13:00
|
|
|
"phpunit/phpunit": "^9.5",
|
2022-12-12 15:22:01 +13:00
|
|
|
"squizlabs/php_codesniffer": "^3",
|
|
|
|
"symbiote/silverstripe-queuedjobs": "^5"
|
2016-11-17 10:15:58 +13:00
|
|
|
},
|
2017-11-15 09:48:52 +13:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2017-11-29 15:13:46 +13:00
|
|
|
"SilverStripe\\FullTextSearch\\": "src/",
|
2017-11-15 09:48:52 +13:00
|
|
|
"SilverStripe\\FullTextSearch\\Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
2018-06-12 15:45:47 +01:00
|
|
|
"bin": [
|
|
|
|
"bin/fulltextsearch_quickstart"
|
|
|
|
],
|
2021-11-30 13:55:38 +13:00
|
|
|
"extra": [],
|
2020-04-07 08:43:19 +01:00
|
|
|
"scripts": {
|
|
|
|
"lint": "phpcs -s src/ tests/",
|
|
|
|
"lint-clean": "phpcbf src/ tests/"
|
2016-11-17 10:15:58 +13:00
|
|
|
},
|
|
|
|
"suggest": {
|
2018-04-05 17:06:34 +01:00
|
|
|
"symbiote/silverstripe-queuedjobs": "Add background execution of indexing tasks",
|
2016-11-17 10:15:58 +13:00
|
|
|
"silverstripe/fulltextsearch-localsolr": "Adds a ready-to-use local Solr server for initial development"
|
|
|
|
},
|
|
|
|
"minimum-stability": "dev",
|
2017-11-15 09:48:52 +13:00
|
|
|
"prefer-stable": true
|
2022-07-08 12:10:39 +12:00
|
|
|
}
|