forked from symbiote-library/silverstripe-elastica
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 915 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
{
"name": "silverstripe-australia/elastica",
"description": "Provides Elastic Search integration for SilverStripe DataObjects using Elastica",
"type": "silverstripe-module",
"homepage": "http://github.com/ajshort/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/ajshort/silverstripe-elastica/issues"
},
"require": {
"ruflin/elastica": "~3.1",
"silverstripe/framework": ">=3.1"
},
"autoload": {
"psr-0": { "SilverStripe\\Elastica": "src/" }
},
"extra": {
"installer-name": "elastica",
"branch-alias": {
"dev-master": "2.3.x-dev"
}
},
"replace": {
"ajshort/silverstripe-elastica": "self.version"
}
}