├── .php-cs-fixer.php ├── LICENSE ├── composer.json └── src ├── Error.php ├── Internal ├── Assert.php ├── Input.php └── MiddlewareStack.php ├── Middleware.php ├── Procedure.php ├── Request.php ├── Response.php ├── Server.php └── Success.php /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/composer.json -------------------------------------------------------------------------------- /src/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Error.php -------------------------------------------------------------------------------- /src/Internal/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Internal/Assert.php -------------------------------------------------------------------------------- /src/Internal/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Internal/Input.php -------------------------------------------------------------------------------- /src/Internal/MiddlewareStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Internal/MiddlewareStack.php -------------------------------------------------------------------------------- /src/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Middleware.php -------------------------------------------------------------------------------- /src/Procedure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Procedure.php -------------------------------------------------------------------------------- /src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Request.php -------------------------------------------------------------------------------- /src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Response.php -------------------------------------------------------------------------------- /src/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Server.php -------------------------------------------------------------------------------- /src/Success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/JsonRpc/HEAD/src/Success.php --------------------------------------------------------------------------------