├── .gitignore ├── LICENSE ├── README.md ├── Streamer ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── LogicException.php │ └── RuntimeException.php ├── FileStream.php ├── NetworkStream.php └── Stream.php ├── composer.json ├── phpunit.xml.dist └── tests ├── Streamer └── Test │ └── StreamTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/README.md -------------------------------------------------------------------------------- /Streamer/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/Streamer/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /Streamer/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/Streamer/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /Streamer/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/Streamer/Exception/LogicException.php -------------------------------------------------------------------------------- /Streamer/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/Streamer/Exception/RuntimeException.php -------------------------------------------------------------------------------- /Streamer/FileStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/Streamer/FileStream.php -------------------------------------------------------------------------------- /Streamer/NetworkStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/Streamer/NetworkStream.php -------------------------------------------------------------------------------- /Streamer/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/Streamer/Stream.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/Streamer/Test/StreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/tests/Streamer/Test/StreamTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzaninotto/Streamer/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------