├── .gitignore ├── LICENSE ├── circle.yml ├── composer.json ├── config ├── .gitkeep └── rpc.php ├── phpunit.xml ├── readme.md ├── src ├── RpcClientFacade.php ├── RpcClientWrapper.php ├── RpcServerFacade.php └── RpcServiceProvider.php └── tests ├── .gitkeep ├── ClientTest.php ├── ServerTest.php ├── ServiceConfigTest.php ├── ServiceTest.php └── TestCase.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/LICENSE -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/circle.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/composer.json -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/rpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/config/rpc.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/readme.md -------------------------------------------------------------------------------- /src/RpcClientFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/src/RpcClientFacade.php -------------------------------------------------------------------------------- /src/RpcClientWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/src/RpcClientWrapper.php -------------------------------------------------------------------------------- /src/RpcServerFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/src/RpcServerFacade.php -------------------------------------------------------------------------------- /src/RpcServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/src/RpcServiceProvider.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/tests/ClientTest.php -------------------------------------------------------------------------------- /tests/ServerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/tests/ServerTest.php -------------------------------------------------------------------------------- /tests/ServiceConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/tests/ServiceConfigTest.php -------------------------------------------------------------------------------- /tests/ServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/tests/ServiceTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macedd/laravelrpc/HEAD/tests/TestCase.php --------------------------------------------------------------------------------