-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
38 lines (38 loc) · 985 Bytes
/
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
{
"name": "symbiote-library/silverstripe-elastica",
"description": "Provides Elastic Search integration for SilverStripe DataObjects using Elastica",
"type": "silverstripe-module",
"homepage": "http://github.com/symbiote-library/silverstripe-elastica",
"keywords": ["silverstripe", "search", "elasticsearch", "elastica"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Andrew Short",
"email": "[email protected]"
},
{
"name": "Marcus Nyeholt",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/symbiote-library/silverstripe-elastica/issues"
},
"require": {
"ruflin/elastica": "~3.1",
"silverstripe/framework": ">=3.1"
},
"autoload": {
"psr-0": { "Symbiote\\Elastica": "src/" }
},
"extra": {
"installer-name": "elastica",
"branch-alias": {
"dev-master": "3.4.x-dev"
}
},
"replace": {
"ajshort/silverstripe-elastica": "self.version",
"silverstripe-australia/elastica": "self.version"
}
}