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