PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of T. H.   Druid PHP Client   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Druid PHP Client
Send queries to a Apache Druid service
Author: By
Last change:
Date: 4 years ago
Size: 1,360 bytes
 

Contents

Class file image Download
{ "name": "level23/druid-client", "description": "Druid php client for executing queries and more", "keywords": [ "druid", "Apache Druid", "incubating", "analytics database", "timeseries" ], "authors": [ { "name": "Teye Heimans", "email": "teye@level23.nl" }, { "name": "Marc van der Meulen", "email": "marc@level23.nl" } ], "license": "Apache-2.0", "type": "library", "require": { "php": ">=7.2", "ext-json": "*", "guzzlehttp/guzzle": "^6.2" }, "require-dev": { "illuminate/support": "~5.0", "mockery/mockery": "^1.2", "php-coveralls/php-coveralls": "^2.1", "phpstan/phpstan": "^0.11.9", "phpstan/phpstan-mockery": "^0.11.2", "phpunit/phpunit": "^8.2" }, "suggest": { "psr/log": "Required for using the log handler" }, "autoload": { "psr-4": { "Level23\\Druid\\": "src/" } }, "autoload-dev": { "psr-4": { "tests\\": "tests/" } }, "config": { "preferred-install": "dist", "sort-packages": true, "optimize-autoloader": true }, "minimum-stability": "stable", "prefer-stable": true, "extra": { "laravel": { "providers": [ "Level23\\Druid\\DruidServiceProvider" ], "aliases": { "Druid": "Level23\\Druid\\Facades\\Druid" } } } }