diaeai/flysystem-file-response

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/diaeai/flysystem-file-response

dev-main 2023-06-15 00:27 UTC

This package is auto-updated.

Last update: 2025-10-21 04:56:00 UTC


README

composer require diaeai/flysystem-file-response

Example

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