Flux query builder for PHP.
Find a file
David Arendsen cd170e7eff Improved docs README page
Signed-off-by: David Arendsen <darendsen@gamepoint.com>
2023-01-01 12:36:01 +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 Improved docs README page 2023-01-01 12:36:01 +01:00

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/

Documentation

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

Go directly to our Getting started page

Contributing

You're welcome to contribute to this project, but please add tests and follow the coding style.

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