superloop-ltd/lara-flux

Library for InfluxDB in Laravel


Keywords
influxdb, laravel, timeseries
License
BSD-3-Clause

Documentation

Lara-flux

A simple wrapper for influxdb-php in Laravel.

WARNING

This package is in alpha and should not be used in production.

Installing

  • Install by composer command:
composer require superloop-ltd/lara-flux

This package use auto-discover, if using laravel <5.5 you must use below settings

  • Add this lines to yours config/app.php
'providers' => [
//  ...
    LaraFlux\ServiceProvider::class,
]