-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 892 Bytes
/
composer.json
File metadata and controls
36 lines (35 loc) · 892 Bytes
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
{
"name": "nyeholt/silverstripe-extensible-elastic",
"description": "An elastic search adapter for extensible search",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"search",
"elastic search",
"full-text"
],
"homepage": "https://github.com/nyeholt/silverstripe-extensible-elastic",
"license": "BSD-3-Clause",
"authors": [{
"name": "Marcus Nyeholt",
"email": "marcus@symbiote.com.au"
}],
"require": {
"silverstripe/cms": "~4.0",
"nglasl/silverstripe-extensible-search": "~4.0",
"heyday/silverstripe-elastica": "*",
"symbiote/silverstripe-multivaluefield": "*"
},
"autoload": {
"psr-4": {
"Symbiote\\ElasticSearch\\": "src/",
"Elastica\\Transport\\": "src/transport"
}
},
"extra": {
"installer-name": "extensible-elastic",
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}