💾 Archived View for markdain.net › project › psr7-string-stream captured on 2023-04-19 at 22:29:04. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

PSR-7 String Stream

Useful Links

Packagist

Source Code

Issue Tracker

Mailing List

CI Status

Information

Git Clone URI:

git@git.sr.ht:~ancarda/psr7-string-stream

Description

Minimal string based PSR-7 StreamInterface implementation

PSR-7 String Stream was born out of frustration working with PSR-7's StreamInterface. Most implementations typically use PHP Streams, which aren't the best to work with. I've run into bugs where harmless operations on Requests, such as 'withHeaders' causes the underlying Body's destructor to be called, which closes the underlying stream. Since resources can't be cloned, this can cause the body to be destroyed.

This package, as the name implies, implements StreamInterface using strings which will survive clone+destroy.

If you're using this in production,

composer require ancarda/psr7-string-stream

If you're just using this in functional or unit tests, it can go in your 'require-dev' section:

composer require --dev ancarda/psr7-string-stream