├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── public ├── copy-stream.php ├── cuervo.jpg ├── generator.php ├── iterator.php └── php-output.php └── src ├── CallbackStream.php └── IteratorStream.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/composer.lock -------------------------------------------------------------------------------- /public/copy-stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/public/copy-stream.php -------------------------------------------------------------------------------- /public/cuervo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/public/cuervo.jpg -------------------------------------------------------------------------------- /public/generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/public/generator.php -------------------------------------------------------------------------------- /public/iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/public/iterator.php -------------------------------------------------------------------------------- /public/php-output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/public/php-output.php -------------------------------------------------------------------------------- /src/CallbackStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/src/CallbackStream.php -------------------------------------------------------------------------------- /src/IteratorStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/psr7examples/HEAD/src/IteratorStream.php --------------------------------------------------------------------------------