Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/webdollar/webdollar-client-php

JSON-RPC 2.0 client for WebDollar
https://github.com/webdollar/webdollar-client-php

json-rpc-client php webdollar-client

Last synced: 2 months ago
JSON representation

JSON-RPC 2.0 client for WebDollar

Awesome Lists containing this project

README

        

# WebDollar PHP client for JSON-RPC API
[![Build Status](https://travis-ci.org/WebDollar/webdollar-client-php.svg?branch=master)](https://travis-ci.org/WebDollar/webdollar-client-php)

## Installation

### With Composer

```
$ composer require webdollar/webdollar-client-php
```

```json
{
"require": {
"webdollar/webdollar-client-php": "^1.0"
}
}
```

## Usage

```php
'http://localhost:3333',
'auth' => ['username', 'password'],
'debug' => FALSE,
]);

$oClient->clientVersion();

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