silverstripe-fulltextsearch/composer.json

58 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": {
2022-02-10 04:44:14 +01:00
"php": "^7.4 || ^8.0",
"silverstripe/framework": "^4.10",
"monolog/monolog": "~1.15",
2022-04-25 23:53:30 +02:00
"silverstripe/solr-php-client": "^1.0",
"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": {
"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
},
"autoload": {
"psr-4": {
"SilverStripe\\FullTextSearch\\": "src/",
"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": {
"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
2023-03-10 00:21:31 +01:00
}