From cf0c62eeb1263208fe28c98cc0f9838ccd4a94af Mon Sep 17 00:00:00 2001 From: Gregor Date: Thu, 21 Mar 2024 14:51:17 +0100 Subject: [PATCH] update readme --- README.md | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 53e67c8..4cdbc65 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,10 @@ -JsonRPC PHP Client and Server +JSON-RPC PHP Client and Server ============================= -A simple Json-RPC client/server that just works. +A simple JSON-RPC client/server that just works. -Complete fork of `fguillot/JsonRPC` with latest changes. +This is fork of `matasarei/JsonRPC` which in turn is a fork of +`fguillot/JsonRPC`. Features -------- @@ -13,7 +14,7 @@ Features - Authentication and IP based client restrictions - Custom Middleware - Fully unit tested -- Requirements: PHP >= 5.4 +- Requirements: PHP >= 7.4 - License: MIT Author @@ -24,14 +25,9 @@ Frédéric Guillot Installation with Composer -------------------------- -For PHP >= 5.4 +For PHP >= 7.4 ```bash -composer require fguillot/json-rpc -``` - -For PHP 5.3 (last supported version): -```bash -composer require fguillot/json-rpc 1.2.5 +composer require kba-team/json-rpc ``` Running Test Cases