rauwebieten / psr7-partial-download
There is no license information available for the latest version (1.0.6) of this package.
1.0.6
2017-09-13 14:25 UTC
Requires
- php: >=5.4.0
- psr/http-message: ^1.0.1
This package is auto-updated.
Last update: 2025-02-15 21:27:57 UTC
README
Partial downloads with PSR-7 libraries.
- Resuming downloads
- Audio streaming
Based on code by pomle https://github.com/pomle/php-serveFilePartial
Installation
composer require rauwebieten/psr7-partial-download
Usage
// in your controller class / callback $partialDownload = new Psr7PartialDownload(); $response = $partialDownload->sendFile($request,$response,'my-song.mp3','audio/mpeg'); return $response;
see the example folder for details