silverstripe-fulltextsearch/composer.json

62 lines
1.7 KiB
JSON
Raw Permalink Normal View History

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",
"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": {
"php": ">=7.1",
2022-01-07 11:40:31 +01:00
"ext-curl": "*",
"silverstripe/framework": "^4.0",
"monolog/monolog": "~1.15",
"ptcinc/solr-php-client": "^1.0",
"symfony/process": "^3.2",
"tractorcow/silverstripe-proxy-db" : "~0.1"
2016-11-16 22:15:58 +01:00
},
"require-dev": {
"silverstripe/cms": "^4.0",
2020-11-05 22:13:19 +01:00
"sminnee/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
2016-11-16 22:15:58 +01:00
},
"autoload": {
"psr-4": {
"SilverStripe\\FullTextSearch\\": "src/",
"SilverStripe\\FullTextSearch\\Tests\\": "tests/"
}
},
2018-06-12 16:45:47 +02:00
"bin": [
"bin/fulltextsearch_quickstart"
],
2019-05-09 04:07:34 +02:00
"extra": {
"branch-alias": {
"3.x-dev": "3.7.x-dev"
}
},
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": {
"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",
"prefer-stable": true
2012-11-03 00:31:41 +01:00
}