This package provides some implementations of the PSR-7 StreamInterface.
You can install this package using composer:
$ composer require mintware-de/streams
Provides read / write access for files.
use \MintWare\Streams\FileStream;
$stream = new FileStream($filename, $readable = true, $writable = true);
With this implementation you can read data from and write data to the memory.
use \MintWare\Streams\MemoryStream;
$stream = new MemoryStream($initialData = '');
Provides read-only access for the php://input
resource. This holds for example the raw HTTP request.
use \MintWare\Streams\InputStream;
$stream = new InputStream();
Provides write-only access for the php://output
resource.
use \MintWare\Streams\OutputStream;
$stream = new OutputStream();
$ phpunit
Don't forget to hit the ⭐️-Star button if you find this package useful. Thanks 🙂