gyselroth/balloon-sdk

Official balloon sdk for php

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/gyselroth/balloon-sdk

v0.1.0 2019-10-10 09:37 UTC

This package is not auto-updated.

Last update: 2025-10-17 15:42:40 UTC


README

Build Status Latest Stable Version GitHub release GitHub license

Requirements

  • PHP >= 7.0

Download

The package is available at packagist

To install the package via composer execute:

composer require gyselroth/balloon-sdk

Basic usage

use Balloon\Sdk\Api\CoreV2Api;
use Balloon\Sdk\Configuration;

$client = new GuzzleHttp\Client();

$config = new Configuration();
$config->setHost('http://localhost:8084');
$config->setUsername('admin');
$config->setPassword('admin');

//Access token auth (Bearer)
//$config->setAccessToken('0dadcc7510979af9e2b8c58bd76cc611ac7453ec');

$core = new CoreV2Api($client, $config);
$core->getNodes();