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