Compare commits

...

1 Commits

Author SHA1 Message Date
jay da62588798 de-inherit potter/resource 2026-06-14 12:20:38 -04:00
2 changed files with 2 additions and 5 deletions
+1 -2
View File
@@ -12,8 +12,7 @@
"potter/rewindable": "^0.0.1", "potter/rewindable": "^0.0.1",
"potter/stringable": "^0.0.1", "potter/stringable": "^0.0.1",
"potter/writeable": "^0.0.1", "potter/writeable": "^0.0.1",
"potter/readable": "^0.0.1", "potter/readable": "^0.0.1"
"potter/resource": "^0.0.1"
}, },
"license": "MIT", "license": "MIT",
"autoload": { "autoload": {
+1 -3
View File
@@ -13,12 +13,10 @@ use \Potter\Detachable\DetachableInterface;
use \Potter\Readable\ReadableInterface; use \Potter\Readable\ReadableInterface;
use \Potter\Writeable\WriteableInterface; use \Potter\Writeable\WriteableInterface;
use \Potter\Resource\ResourceInterface;
use \Psr\Http\Message\StreamInterface as PsrStreamInterface; use \Psr\Http\Message\StreamInterface as PsrStreamInterface;
interface StreamInterface extends PsrStreamInterface, StringableInterface, interface StreamInterface extends PsrStreamInterface, StringableInterface,
ReadableInterface, WriteableInterface, ResourceInterface, ReadableInterface, WriteableInterface,
CloseableInterface, DetachableInterface, CloseableInterface, DetachableInterface,
RewindableInterface, SeekableInterface RewindableInterface, SeekableInterface
{ {