2017 © Pedro Peláez
 

library core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

image

plinker/core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  • Wednesday, May 23, 2018
  • by lcherone
  • Repository
  • 2 Watchers
  • 1 Stars
  • 828 Installations
  • PHP
  • 12 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 100 Versions
  • 47 % Grown

The README.md

PlinkerRPC - Core

Build Status StyleCI Scrutinizer Code Quality Code Coverage Packagist Version Packagist Downloads, (*1)

PlinkerRPC PHP client/server makes it really easy to link and execute generic PHP components on remote systems, while maintaining the feel of a local method call., (*2)

Docs: https://plinker-rpc.github.io/core, (*3)

New changes in version 3 include:, (*4)

  • Now compaible with PHP extension.
  • Built-in core components and info method added so components can be discovered.
  • Only one client instance is now needed, made use of __get() to dynamically set component.
  • User defined components/classes, so you can call your own code.
  • Both request and response is encrypted and signed.

Install

Require this package with composer using the following command:, (*5)

``` bash $ composer require plinker/core, (*6)


### Additional Setup This component does not require any additional setup. ## Client Creating a client instance is done as follows: <?php require 'vendor/autoload.php'; /** * Initialize plinker client. * * @param string $server - URL to server listener. * @param string $config - server secret, and/or a additional component data */ $client = new \Plinker\Core\Client( 'http://example.com/server.php', [ 'secret' => 'a secret password', ] ); // or using global function $client = plinker_client('http://example.com/server.php', 'a secret password'); ## Server Creating a server listener is done as follows: **Optional features:** - Set a secret, which all clients will require. - Lock down to specific client IP addresses for addtional security. - Define your own classes in the `classes` array then access like above `$client->class->method()`, which can interface out of scope components or composer packages. - Define addtional key values for database connections etc, or you could pass the parameters through the client connection. <?php require 'vendor/autoload.php'; /** * Initialize plinker server. */ if (isset($_SERVER['HTTP_PLINKER'])) { // init plinker server echo (new \Plinker\Server([ 'secret' => 'a secret password', 'allowed_ips' => [ '127.0.0.1' ], 'classes' => [ 'test' => [ // path to file 'classes/test.php', // addtional key/values [ 'key' => 'value' ] ], // you can use namespaced classes 'Foo\\Demo' => [ // path to file 'some_class/demo.php', // addtional key/values [ 'key' => 'value' ] ], // ... ] ]))->listen(); } ## Methods Once setup, you call the class though its namespace to its method. ### Info The info method returns defined endpoint methods and their parameters. **Call**

$result = $client->info();, (*7)


**Response**

Array ( [class] => Array ( [Foo\Demo] => Array ( [config] => Array ( [key] => value ), (*8)

                [methods] => Array
                    (
                        [config] => Array
                            (
                            )

                        [this] => Array
                            (
                            )

                        [test] => Array
                            (
                                [0] => x
                                [1] => y
                            )

                    )

            )

    )

), (*9)


## Testing ``` bash $ composer test

Contributing

Please see CONTRIBUTING for details., (*10)

Security

If you discover any security related issues, please contact me via https://cherone.co.uk instead of using the issue tracker., (*11)

Credits

Development Encouragement

If you use this code and make money from it and want to show your appreciation, please feel free to make a donation https://www.paypal.me/lcherone, thanks., (*12)

Sponsors

Get your company or name listed here., (*13)

License

The MIT License (MIT). Please see License File for more information., (*14)

See organisations page for additional components., (*15)

The Versions

23/05 2018

dev-master

9999999-dev https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

23/05 2018

v3.1.9

3.1.9.0 https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

21/05 2018

v3.1.8

3.1.8.0 https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

14/05 2018

v3.1.7

3.1.7.0 https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

10/05 2018

v3.1.6

3.1.6.0 https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

08/05 2018

v3.1.5

3.1.5.0 https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

08/05 2018

v3.1.4

3.1.4.0 https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

08/05 2018

v3.1.3

3.1.3.0 https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

04/05 2018

v3.1.2

3.1.2.0 https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

03/05 2018

v3.1.1

3.1.1.0 https://github.com/lcherone/plinker-core

PlinkerRPC PHP client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

03/05 2018

v3.1.0

3.1.0.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

03/05 2018

v3.0.14

3.0.14.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

01/05 2018

v3.0.13

3.0.13.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

01/05 2018

v3.0.12

3.0.12.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.11

3.0.11.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.10

3.0.10.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-qgNnnd

dev-analysis-qgNnnd https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.9

3.0.9.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-zOODB4

dev-analysis-zOODB4 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-q2oVvP

dev-analysis-q2oVvP https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.8

3.0.8.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-zGmyd9

dev-analysis-zGmyd9 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.7

3.0.7.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-8Kmyr9

dev-analysis-8Kmyr9 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.6

3.0.6.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-8Plyro

dev-analysis-8Plyro https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-qvKpml

dev-analysis-qvKpml https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-XlL4Rw

dev-analysis-XlL4Rw https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.5

3.0.5.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-8AmEyZ

dev-analysis-8AmEyZ https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.4

3.0.4.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-z3oaW4

dev-analysis-z3oaW4 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.3

3.0.3.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-q1oYEP

dev-analysis-q1oYEP https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-zRVyAj

dev-analysis-zRVyAj https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-q2oV09

dev-analysis-q2oV09 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.2

3.0.2.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-zdaVYg

dev-analysis-zdaVYg https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.1

3.0.1.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-8j9RDG

dev-analysis-8j9RDG https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

v3.0.0

3.0.0.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-version3

dev-version3 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

28/01 2018

dev-analysis-z9o9bw

dev-analysis-z9o9bw https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

  • php ~5.6|~7.0

 

The Development Requires

server client remote rpc plinker

27/01 2018

dev-analysis-qyJBvp

dev-analysis-qyJBvp https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

27/01 2018

v2.1.8

2.1.8.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

27/01 2018

dev-analysis-qM6y14

dev-analysis-qM6y14 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

27/01 2018

v2.1.7

2.1.7.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

dev-analysis-zDmvmy

dev-analysis-zDmvmy https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.1.6

2.1.6.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

dev-add-license-1

dev-add-license-1 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.1.5

2.1.5.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

dev-analysis-8KmQRe

dev-analysis-8KmQRe https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

dev-analysis-zOOV5k

dev-analysis-zOOV5k https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.1.4

2.1.4.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.1.3

2.1.3.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

dev-analysis-zDmZN5

dev-analysis-zDmZN5 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.1.2

2.1.2.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.1.1

2.1.1.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.1.0

2.1.0.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.37

2.0.37.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.36

2.0.36.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.35

2.0.35.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.34

2.0.34.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.33

2.0.33.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.32

2.0.32.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

dev-analysis-8bY3QA

dev-analysis-8bY3QA https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.31

2.0.31.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.30

2.0.30.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.29

2.0.29.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.28

2.0.28.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.27

2.0.27.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.26

2.0.26.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.25

2.0.25.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.24

2.0.24.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker

26/01 2018

v2.0.23

2.0.23.0 https://github.com/lcherone/plinker-core

Plinker PHP RPC client/server makes it really easy to link and execute PHP component classes on remote systems, while maintaining the feel of a local method call.

  Sources   Download

MIT

The Requires

 

The Development Requires

server client remote rpc plinker