Flux query builder for PHP.
Find a file
davidarendsen e10c3e924a Add getting started to docs
Signed-off-by: davidarendsen <davidarendsen@hey.com>
2022-12-28 16:23:22 +00:00
docs Add getting started to docs 2022-12-28 16:23:22 +00:00
src Extract general QueryBuilder logic into an abstract class to make it more maintainable 2022-12-21 16:02:43 +00:00
tests Extract general QueryBuilder logic into an abstract class to make it more maintainable 2022-12-21 16:02:43 +00:00
.gitignore Add Flux from() and filter() methods 2022-08-05 15:41:38 +00:00
composer.json Add KeyFilter and deprecate KeyValue object 2022-10-21 20:03:52 +00:00
composer.lock Add composer scripts 2022-08-31 08:19:19 +00:00
phpunit.xml Add Flux from() and filter() methods 2022-08-05 15:41:38 +00:00
README.md Add getting started to docs 2022-12-28 16:23:22 +00:00

InfluxDB 2.x Flux Query Builder

With this query builder you can build queries for Flux. Flux is a powerful open source query language created by the makers of InfluxDB. See https://www.influxdata.com/products/flux/

Installation

composer require arendsen/fluxquerybuilder

Documentation

The documentation of this project is available in the doc folder.

Testing

composer test

Coding style

Run the following commands to check and fix the coding style. We're using the PSR12 standard.

composer check
composer format