-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
58 lines (52 loc) · 1.51 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
{
"name": "liip/drupalregistrymodule",
"description": "This module provides an API to by used to persist/cache information.",
"license": "MIT",
"minimum-stability": "dev",
"type": "drupal-module",
"keywords": [ "Drupal", "API", "registry", "Drupal 7", "ood", "software quality", "loose coupling", "elasticsearch" ],
"authors": [
{
"name": "Bastian Feder",
"email": "[email protected]",
"role": "maintainer"
},
{
"name": "Patrick Jezek",
"email": "[email protected]",
"role": "maintainer"
},
{
"name": "List of contributors",
"homepage": "https://github.com/liip/LiipDrupalRegistryModule/graphs/contributors"
}
],
"config": {
"github-protocols": ["https", "http", "git"]
},
"autoload": {
"psr-0": {
"Liip\\Drupal\\Modules\\Registry": "src"
}
},
"require": {
"php": ">=5.3.8",
"liip/drupalconnectormodule": "dev-master",
"liip/registryadaptor": "dev-master",
"beberlei/assert": "~1.5"
},
"require-dev": {
"lapistano/proxy-object": "dev-master"
},
"suggest": {
"ruflin/elastica": "Allows the registry to be an elasticsearch index."
},
"extra": {
"installer-paths": {
"vendor/liip/{$name}": [
"liip/drupalconnectormodule",
"liip/registryadaptor"
]
}
}
}