Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-14T16:00:29.000Z (over 5 years ago)
- Last Synced: 2024-04-03T04:23:42.689Z (9 months ago)
- Topics: json-rpc-client, php, webdollar-client
- Language: PHP
- Size: 57.6 KB
- Stars: 3
- Watchers: 3
- 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
[![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();