From 1553d204479b14a8a931042dd3b197c8e48c52e4 Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Fri, 5 Jun 2026 15:06:46 -0400 Subject: [PATCH] initialize --- composer.json | 8 +++++++- src/Potter/Stream/SeekableInterface.php | 11 ++++++++++ src/Potter/Stream/StreamInterface.php | 27 +++++++++++++++++++++++++ 3 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 src/Potter/Stream/SeekableInterface.php create mode 100644 src/Potter/Stream/StreamInterface.php diff --git a/composer.json b/composer.json index c3bfcd3..b37a3fb 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,13 @@ "description": "Potter Framework Stream Component", "type": "library", "require": { - "php": "^8.5" + "php": "^8.5", + "psr/http-message": "^2.0", + "potter/closeable": "^0.0.1", + "potter/detachable": "^0.0.1", + "potter/rewindable": "^0.0.1", + "potter/stringable": "^0.0.1", + "potter/writeable": "^0.0.1" }, "license": "MIT", "autoload": { diff --git a/src/Potter/Stream/SeekableInterface.php b/src/Potter/Stream/SeekableInterface.php new file mode 100644 index 0000000..3497676 --- /dev/null +++ b/src/Potter/Stream/SeekableInterface.php @@ -0,0 +1,11 @@ +