-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
43 lines (43 loc) · 1.06 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
{
"name": "r4j4h/php-druid-ingest",
"description": "PHP Classes to wrap ingestion of data into Druid",
"keywords": ["druid", "indexing", "ingestion", "overlord"],
"license": "MIT",
"authors": [
{
"name": "Jasmine Hegman",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"psr/log": "1.0.0",
"guzzle/guzzle": "~3.9",
"symfony/console": "~2.5",
"r4j4h/php-druid-query": "1.0.x-dev"
},
"require-dev": {
"phpunit/phpunit": "~4",
"phing/phing": "~2",
"phpmd/phpmd": "~2",
"phploc/phploc": "~2"
},
"autoload": {
"psr-4": {
"PhpDruidIngest\\": "src/",
"ReferralIngester\\Command\\": "clicommands/"
}
},
"autoload-dev": {
"psr-4": {
"PhpDruidIngest\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.1.x-dev",
"dev-master": "1.0.x-dev"
}
}
}