From b2260c9024c5b8e42ee13bf0f09beff5e5c69b9b Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Fri, 5 Jun 2026 16:28:31 -0400 Subject: [PATCH] create RequestHandlerInterface --- composer.json | 3 ++- src/Potter/Request/RequestHandlerInterface.php | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 src/Potter/Request/RequestHandlerInterface.php diff --git a/composer.json b/composer.json index 2b45667..caf96ff 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,8 @@ "type": "library", "require": { "php": "^8.5", - "psr/http-message": "^2.0" + "psr/http-message": "^2.0", + "psr/http-server-handler": "^1.0" }, "license": "MIT", "autoload": { diff --git a/src/Potter/Request/RequestHandlerInterface.php b/src/Potter/Request/RequestHandlerInterface.php new file mode 100644 index 0000000..0afd68e --- /dev/null +++ b/src/Potter/Request/RequestHandlerInterface.php @@ -0,0 +1,14 @@ +