-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·32 lines (32 loc) · 867 Bytes
/
composer.json
File metadata and controls
executable file
·32 lines (32 loc) · 867 Bytes
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
{
"name": "tray-labs/laravel-influxdb",
"description": "A service made to provide, set up and use the library from influxdata influxphp in Laravel.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tray Labs",
"email": "dev@traylabs.com.br"
}
],
"autoload": {
"psr-4": {
"TrayLabs\\InfluxDB\\": "src/"
}
},
"require": {
"influxdb/influxdb-php": "^1.15",
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0"
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"TrayLabs\\InfluxDB\\Providers\\ServiceProvider"
],
"aliases": {
"InfluxDB": "TrayLabs\\InfluxDB\\Facades\\InfluxDB"
}
}
}
}