-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
79 lines (79 loc) · 2.17 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "firesphere/solr-search",
"description": "Search a SilverStripe site with Solr",
"type": "silverstripe-vendormodule",
"license": "GPL-3.0-or-later",
"keywords": [
"silverstripe",
"search",
"solr",
"configuration",
"solarium"
],
"authors": [
{
"name": "Simon `Firesphere` Erkelens",
"email": "[email protected]",
"homepage": "https://casa-laguna.net",
"role": "Lead developer"
},
{
"name": "Marco `Sheepy` Hermo",
"email": "[email protected]",
"role": "Lead developer"
}
],
"require": {
"php": ">=7.3",
"php-http/discovery": "^1.14",
"ext-json": "*",
"silverstripe/framework": "^4|^5",
"symbiote/silverstripe-queuedjobs": "^4|^5",
"solarium/solarium": "^6.0",
"minimalcode/search": "^1.0",
"guzzlehttp/guzzle": "^6.3|^7",
"http-interop/http-factory-guzzle": "^1",
"symfony/event-dispatcher": "^5.4",
"php-http/guzzle7-adapter": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"scriptfusion/phpunit-immediate-exception-printer": "^1",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"1.0": "1.0.x-dev"
},
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"Firesphere\\SolrSearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Firesphere\\SolrSearch\\Tests\\": "tests"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/firesphere/silverstripe-solr-search/issues",
"source": "https://github.com/firesphere/silverstripe-solr-search",
"docs": "https://firesphere.github.io/solr-docs",
"chat": "https://silverstripe-users.slack.com/archives/C9KB3U0P8"
},
"suggest": {
"ext-pcntl": "Support for multi-core indexing",
"firesphere/fts-compat": "Migration support from Fulltext Search module",
"firesphere/fluent-solr-search": "For Fluent support",
"firesphere/subsite-solr-search": "Support for Subsites",
"firesphere/solr-member-permissions": "Fine grained per-member permission checks"
},
"minimum-stability": "dev",
"prefer-stable": true
}