-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 1.82 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
{
"name": "signify-nz/silverstripe-solr-search",
"description": "Search a SilverStripe site with Solr",
"type": "silverstripe-vendormodule",
"license": "LGPL-3.0-or-later",
"keywords": [
"silverstripe",
"search",
"solr",
"configuration",
"solarium"
],
"authors": [
{
"name": "Simon `Firesphere` Erkelens",
"email": "[email protected]",
"homepage": "https://firesphere.dev",
"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|^6",
"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"
}
},
"replace": {
"firesphere/solr-search": "^2"
},
"support": {
"issues": "https://github.com/signify-nz/silverstripe-solr-search/issues",
"source": "https://github.com/signify-nz/silverstripe-solr-search",
"security": "https://github.com/signify-nz/silverstripe-solr-search/security"
},
"minimum-stability": "dev",
"prefer-stable": true
}