-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
47 lines (47 loc) · 1.41 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
{
"name": "corley/influxdb-sdk",
"license": "MIT",
"description": "Send your app metrics to InfluxDB",
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "~4|~5|~6"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"ext-sockets": "*"
},
"homepage": "http://www.corley.it/",
"keywords": ["influxdb", "udp", "sdk"],
"authors": [
{
"name": "Gianluca Arbezzano",
"email": "[email protected]"
},
{
"name": "Walter Dal Mut",
"email": "[email protected]"
},
{
"name": "Gabriele Mittica",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"InfluxDB\\": ["./src/"],
"Corley\\": ["./benchmarks/"]
}
},
"autoload-dev": {
"psr-4": {
"InfluxDB\\": ["./tests/unit"],
"InfluxDB\\Integration\\": ["./tests/integration"]
}
},
"suggest": {
"corley/dbal-influxdb": "This library help you to build query",
"fabpot/pimple": "Allows to prepare the client dependencies in order to require an initialized instance",
"zendframework/zend-servicemanager": "Use a service locator in order to prepare a valid instance",
"symfony/dependency-injection": "Prepare a valid instance via the symfony DiC"
}
}