forked from level23/druid-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.34 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
59
60
61
62
63
64
65
{
"name": "level23/druid-client",
"description": "Druid php client for executing queries and more",
"keywords": [
"druid",
"Apache Druid",
"incubating",
"analytics database",
"timeseries"
],
"authors": [
{
"name": "Teye Heimans",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"type": "library",
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.2|^7.0"
},
"require-dev": {
"infection/infection": "^0.26.6",
"mockery/mockery": "^1.2",
"php-coveralls/php-coveralls": "^2.1",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^8|^9"
},
"suggest": {
"psr/log": "Required for using the log handler"
},
"autoload": {
"psr-4": {
"Level23\\Druid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Level23\\Druid\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"infection/infection": true,
"infection/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Level23\\Druid\\DruidServiceProvider"
],
"aliases": {
"Druid": "Level23\\Druid\\Facades\\Druid"
}
}
}
}