Compare commits
3 Commits
5f0a0c3a95
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| da62588798 | |||
| f56cc5d287 | |||
| 54323d60c8 |
@@ -1,4 +1,5 @@
|
|||||||
composer.lock
|
composer.lock
|
||||||
composer.phar
|
composer.phar
|
||||||
|
test.php
|
||||||
/nbproject/
|
/nbproject/
|
||||||
/vendor/
|
/vendor/
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
# Stream
|
# Stream
|
||||||
|
|
||||||
Potter Framework Stream Component
|
Potter Framework Stream Implementation
|
||||||
+2
-3
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "potter/stream",
|
"name": "potter/stream",
|
||||||
"description": "Potter Framework Stream Component",
|
"description": "Potter Framework Stream Implementation",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.5",
|
"php": "^8.5",
|
||||||
@@ -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": {
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user