Flux query builder for PHP.
Find a file
David Arendsen c728f721e5 Add required column to docs
Signed-off-by: David Arendsen <darendsen@gamepoint.com>
2023-01-01 12:26:40 +01:00
docs Add required column to docs 2023-01-01 12:26:40 +01: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 functions docs page 2022-12-30 10:47:44 +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 docs folder.

Go directly to our Getting started page

Testing

To execute the testing suite:

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