gumphp/think-storage

The ThinkPHP6.1 Filesystem Package

v1.0.3 2023-05-26 08:06 UTC

This package is auto-updated.

Last update: 2024-04-26 09:59:01 UTC


README

composer require gumphp/think-storage

配置

# config/filesystem.php

return [
    'disks' => [
        's3' => [
            'type' => 'aws',
            'root' => '/',
            'credentials' => [
                'key' => env('S3_KEY', ''),
                'secret' => env('S3_SECRET', ''),
            ],
            'version' => env('S3_VERSION', 'latest'),
            'region' => env('S3_REGION', 'us-west-2'),
            'bucket' => env('S3_BUCKET', ''),
        ],
    ],
];

使用

use GumPHP\Storage\Facade\Storage;

Storage::disk('s3')->put('/s3/remote/file.ext', file_get_contents('/path/yourfile.ext'));