recca0120/streaming-response

0.0.2 2023-02-15 12:12 UTC

This package is auto-updated.

Last update: 2024-04-23 12:18:51 UTC


README

composer require recca0120/streaming-response

Example

<?php
// routes/web.php
Route::get('streaming', function() {
    return Storage::disk('s3')->streaming('path/to.mp4');
});