ydalbj/laravel-bos

百度BOS存储的Laravel文件系统服务提供者

v0.3 2020-07-28 08:31 UTC

This package is auto-updated.

Last update: 2024-09-28 18:37:00 UTC


README

  • PHP >= 7.1

安装

$ composer require ydalbj/laravel-bos

配置

添加BOS配置

  • 编辑 config\filesystems.php
    'disks' => [

        ...

        'bos' => [
            'driver' => 'bos',
            'bucket' => env('BOS_BUCKET'),
            'options' => [
                'credentials' => [
                    'ak' => env('BOS_KEY'),
                    'sk' => env('BOS_SECRET'),
                ],
                'endpoint' => env('BOS_ENDPOINT', 'http://bj.bcebos.com'),
            ]
        ]
    ]

定义环境变量

  • 编辑 .env
BOS_BUCKET=your bucket
BOS_KEY=your bos access key id
BOS_SECRET=your bos secret key id
BOS_ENDPOINT=your bos endpoint