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
- Host: GitHub
- URL: https://github.com/webdollar/webdollar-client-php
- Owner: WebDollar
- Created: 2019-01-29T03:28:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-14T16:00:29.000Z (about 6 years ago)
- Last Synced: 2025-04-18T13:09:38.359Z (3 months ago)
- Topics: json-rpc-client, php, webdollar-client
- Language: PHP
- Size: 57.6 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# WebDollar PHP client for JSON-RPC API
[](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();