WebDollar / webdollar-client-php

JSON-RPC 2.0 client for WebDollar

Repository from Github https://github.comWebDollar/webdollar-client-phpRepository from Github https://github.comWebDollar/webdollar-client-php

WebDollar PHP client for JSON-RPC API

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();

About

JSON-RPC 2.0 client for WebDollar


Languages

Language:PHP 100.0%