exula/laravel-storage-rados-s3 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

exula/laravel-storage-rados-s3

最新稳定版本:2.0.2

Composer 安装命令:

composer require exula/laravel-storage-rados-s3

包简介

Extends League Flysystem S3 Adapter to easily point it to a Rados Gateway

README 文档

README

#Laravel Rados Gateway S3 storage provider

This is a simple service provider that extends league/flysystem-aws-s3-v3 and allows the base_url to be set.

Primary use is for S3 compatible services like the Ceph Rados Gateway

Installation

composer require exula/laravel-storage-rados-s3

Package should be auto discovered by Laravel 5.5

OR

Register the service provider in app.php

'providers' => [
    // ...
    Exula\Ceph\CephStorageServiceProvider::class,
]

Add a new disk to your config/filesystems.php config:

'ceph' => [
           'base_url' => env('CEPH_BASE_URL', 'xxxxxxxxx'),
           'driver' => 'ceph',
           'key' => env('CEPH_ACCESS_KEY', 'xxxxxxx'),
           'credentials' => [
               'key' => env('CEPH_ACCESS_KEY', 'xxxxxxx'),
               'secret' => env('CEPH_SECRET_KEY', 'xxxxxxx'),
               ],
           'region' => '',
           'bucket' => env('CEPH_BUCKET', 'test'),
           'version' => env('CEPH_VERSION', 'latest'),
           'ACL' => env('CEPH_ACL', 'private'), //private,'public-read',
           'visibility' => env('CEPH_VISIBILITY', 'private')
       ],

Put the following lines in your .env file and fill out with your connection information

CEPH_BASE_URL=
CEPH_ACCESS_KEY=
CEPH_SECRET_KEY=
CEPH_BUCKET=
CEPH_VERSION=
CEPH_ACL=
CEPH_VISIBILITY=

Usage

Once installed this can be used as any standard Storage driver for Laravel 5.5 https://laravel.com/docs/5.5/filesystem

统计信息

  • 总下载量: 41.05k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 10
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 10
  • Watchers: 2
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-11-01