AOEpeople/junior

Name: junior

Owner: AOE

Description: PHP client/server library for JSON-RPC 2.0

Created: 2014-03-06 13:07:26.0

Updated: 2014-03-06 13:07:27.0

Pushed: 2013-11-27 13:55:50.0

Homepage: http://evilscott.github.io/junior/

Size: 659

Language: PHP

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Junior - A JSON-RPC Client/Server in PHP Build Status

What is JSON-RPC?

From the JSON-RPC Spec:

“JSON-RPC is a stateless, light-weight remote procedure call (RPC) protocol. Primarily this specification defines several data structures and the rules around their processing. It is transport agnostic in that the concepts can be used within the same process, over sockets, over http, or in many various message passing environments. It uses JSON (RFC 4627) as data format. It is designed to be simple!”

Why should I use Junior?

Junior is JSON-RPC 2.0 viable and follows the JSON-RPC spec as of March 2012. It supports batching, named parameters, and notifications.

Is Junior available in a PHAR format?

Junior can be downloaded as a PHAR file from the downloads section, or you can make your own PHAR file by running createphar.php from the bin directory.

How do I use the client?

Include lib/autoload.php load all necessary files. Alternatively, just include junior.phar if taking advantage of the PHAR format. Create a new instance of Junior\Client() and pass it the URI of the server you wish to communicate with. All communication through this instance. See the example folder for more details.

How do I use the server?

Include lib/autoload.php load all necessary files. Alternatively, just include junior.phar if taking advantage of the PHAR format. Create a new instance of Junior\Server() and pass it an instance of the class you wish to expose for communication. Then call the process() function on your server instance and you are ready to go! See the example folder for more details.

What if I don't like PHP (or I need to talk to Ruby)?

Try out Jimson, written by Chris Kite for Ruby. It was made at the same time as Junior, and supports all the same features.

What do I need to run Junior?
Does it have tests?

Yes and as of February 2012 Junior has a robust, working test suite! The tests were written using Spray to stub stream wrappers and PHPUnit version 3.6.10. UPDATE: Junior is hooked into Travis CI as of March 2012.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.