From 201eaeebab432856c63d52154c161d32b47289b3 Mon Sep 17 00:00:00 2001 From: Gregor Date: Thu, 21 Mar 2024 14:51:07 +0100 Subject: [PATCH 1/2] update composer name and homepage --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 3fb693b..53929c5 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { - "name": "fguillot/json-rpc", - "description": "Simple Json-RPC client/server library that just works", - "homepage": "https://github.com/matasarei/JsonRPC", + "name": "kba-team/json-rpc", + "description": "Simple JSON-RPC client/server library that just works", + "homepage": "https://github.com/the-kbA-team/json-rpc/", "type": "library", "license": "MIT", "authors": [ From cf0c62eeb1263208fe28c98cc0f9838ccd4a94af Mon Sep 17 00:00:00 2001 From: Gregor Date: Thu, 21 Mar 2024 14:51:17 +0100 Subject: [PATCH 2/2] 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