Download the PHP package babymarkt/influxdb2-bundle without Composer

On this page you can find all versions of the php package babymarkt/influxdb2-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package influxdb2-bundle

InfluxDB2 Symfony Bundle

Symfony bundle integration of the official InfluxDB 2.x client.

Build 1.x codecov Packagist Version License PHP from Packagist PHP from Packagist

Note: Use this symfony bundle with InfluxDB 2.x and InfluxDB 1.8+ (see details on client repo).

Installation

You need to require this library through composer:

If you are using Symfony Flex, the following will happen automatically. Otherwise, you have to enable the bundle on the bundles.php manually:

Configuration

Let's start with a minimal setup:

Or in the short version:

This creates the following services for you:

Full configuration reference:

Service usage

Clients

Default client injection by class name:

Specific clients can be retrieved by injecting via service definition:

or by getting from client registry:

APIs

In the same way, you get the Write- and Query-APIs:

Specific APIs can be retrieved by injecting via service definition:

or by getting from API registry:

Additional InfluxDB2 APIs

The official InfluxDB2 client library provides many additional API services. Although no Symfony services are defined for these, they can be obtained at any time via a client instance and require no further configuration.

Here is an example on the ReadyService that returns the status of a InfluxDB2 instance:

For more information, see the API documentation of InfluxDB2.

Console Commands

This bundle comes with some console commands for managing entities via the InfluxDB2 API. All commands have the option --client|-c to select the InfluxDB2 client to use.

babymarkt_influxdb:setup

Sets up the initial user, organisation and bucket for a new instance.

babymarkt_influxdb:ping

Checks the status and version of an InfluxDB instance.

babymarkt_influxdb:ready

Get the readiness of an instance at startup.

babymarkt_influxdb:buckets:list

Lists all available buckets of an instance.

babymarkt_influxdb:buckets:retrieve

Provides all information about a bucket.

babymarkt_influxdb:buckets:create

Creates a new bucket.

babymarkt_influxdb:buckets:update

Updates an existing bucket.

babymarkt_influxdb:buckets:delete

Deletes an existing bucket.

babymarkt_influxdb:orgs:list

Lists all available organizations of an instance.

babymarkt_influxdb:orgs:retrieve

Provides all information about an organization.

babymarkt_influxdb:orgs:create

Creates a new organization.

babymarkt_influxdb:orgs:update

Updates an existing organization.

babymarkt_influxdb:orgs:delete

Deletes an existing organization.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Baby-Markt/influxdb2-bundle.

License

The bundle is available as open source under the terms of the MIT License.


All versions of influxdb2-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0
influxdata/influxdb-client-php Version ^2.4
symfony/console Version ^5.4.0 || ^6.0
symfony/framework-bundle Version ^5.4.0 || ^6.0
symfony/yaml Version ^5.4.0 || ^6.0
symfony/serializer Version ^5.4.0 || ^6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package babymarkt/influxdb2-bundle contains the following files

Loading the files please wait ....