2017 © Pedro Peláez
 

library jsonrpc

A simple JSON-RPC client and server for Yii2 application

image

mmplayer/jsonrpc

A simple JSON-RPC client and server for Yii2 application

  • Monday, June 8, 2015
  • by mmplayer
  • Repository
  • 2 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Tutorials

Guide using with Yii2, (*1)

PHP JSON-RPC

PHP JSON-RPC is a simple JSON-RPC client and server. It is currently in an alpha state, a stable version is expected soon. Word of warning, API will probably change soon as well :), (*2)

Build Status, (*3)

Installation

Composer

Simply add a dependency on trifs/phpjsonrpc to your project's composer.json file if you use Composer to manage the dependencies of your project. Here is a minimal example of a composer.json:, (*4)

{
    "require": {
        "trifs/jsonrpc": "dev-master"
    }
}

For a system-wide installation via Composer, you can run:, (*5)

composer global require 'trifs/phpjsonrpc=*'

Usage Examples

Client (single request)

$client = new trifs\jsonrpc\Client('http://example.com');
$client->request('method-one')
    ->send();

$client = new trifs\jsonrpc\Client('http://example.com');
$client->notification('method-one')
    ->send();

Client (batch request)

$client = new trifs\jsonrpc\Client('http://example.com');
$client->request('method-one')
    ->request('method-two')
    ->notification('method-three')
    ->send();

Server

$input   = file_get_contents('php://input');
$invoker = function($method, array $params = []) {
    return time();
};

$server = new trifs\jsonrpc\Server($input, $invoker);
$server->run();

Contributing

Contributions are always welcome. You make our lives easier by sending us your contributions through GitHub pull requests., (*6)

Due to time constraints, we are not always able to respond as quickly as we would like. Please do not take delays personal and feel free to remind us here if you feel that we forgot to respond., (*7)

Using PHP JSON-RPC in a development environment

To set PHP JSON-RPC up locally, make sure to have Vagrant and VirtualBox installed., (*8)

git clone git://github.com/3fs/php-json-rpc
cd php-json-rpc
vagrant up

After making the changes, run ./build/qa.sh all, sit back and relax. If there are problems reported, repeat. If not, try harder :), (*9)

The Versions

08/06 2015

dev-master

9999999-dev https://github.com/mmplayer/yii2-php-json-rpc

A simple JSON-RPC client and server for Yii2 application

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by David Kuridža

json server client jsonrpc rpc

07/11 2014

dev-patch-1

dev-patch-1 https://github.com/3fs/php-json-rpc

A simple JSON-RPC client and server

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by David Kuridža

json server client jsonrpc rpc

26/10 2014

dev-thinkphp

dev-thinkphp https://github.com/3fs/php-json-rpc

A simple JSON-RPC client and server

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by David Kuridža

json server client jsonrpc rpc