webdollar/webdollar-client-php

JSON-RPC 2.0 client for WebDollar

v1.5.0 2019-04-14 15:58 UTC

This package is not auto-updated.

Last update: 2024-04-06 23:47:27 UTC


README

Build Status

Installation

With Composer

$ composer require webdollar/webdollar-client-php
{
    "require": {
        "webdollar/webdollar-client-php": "^1.0"
    }
}

Usage

<?php
require 'vendor/autoload.php';

use WebDollar\Client\WebDollarClient;

$oClient = WebDollarClient::factory([
    'url'   => 'http://localhost:3333',
    'auth'  => ['username', 'password'],
    'debug' => FALSE,
]);

$oClient->clientVersion();

// or async version which will return a promise
$oClient->clientVersionAsync();