Compare commits

...

3 Commits

Author SHA1 Message Date
jay da62588798 de-inherit potter/resource 2026-06-14 12:20:38 -04:00
jay f56cc5d287 description 2026-06-14 12:18:00 -04:00
jay 54323d60c8 add test.php 2026-06-14 12:17:50 -04:00
4 changed files with 5 additions and 7 deletions
+1
View File
@@ -1,4 +1,5 @@
composer.lock
composer.phar
test.php
/nbproject/
/vendor/
+1 -1
View File
@@ -1,3 +1,3 @@
# Stream
Potter Framework Stream Component
Potter Framework Stream Implementation
+2 -3
View File
@@ -1,6 +1,6 @@
{
"name": "potter/stream",
"description": "Potter Framework Stream Component",
"description": "Potter Framework Stream Implementation",
"type": "library",
"require": {
"php": "^8.5",
@@ -12,8 +12,7 @@
"potter/rewindable": "^0.0.1",
"potter/stringable": "^0.0.1",
"potter/writeable": "^0.0.1",
"potter/readable": "^0.0.1",
"potter/resource": "^0.0.1"
"potter/readable": "^0.0.1"
},
"license": "MIT",
"autoload": {
+1 -3
View File
@@ -13,12 +13,10 @@ use \Potter\Detachable\DetachableInterface;
use \Potter\Readable\ReadableInterface;
use \Potter\Writeable\WriteableInterface;
use \Potter\Resource\ResourceInterface;
use \Psr\Http\Message\StreamInterface as PsrStreamInterface;
interface StreamInterface extends PsrStreamInterface, StringableInterface,
ReadableInterface, WriteableInterface, ResourceInterface,
ReadableInterface, WriteableInterface,
CloseableInterface, DetachableInterface,
RewindableInterface, SeekableInterface
{