aobozhang / aliyun-oss-adapter
Use Aliyun oss as Storage for Laravel 5.0+
Installs: 1 000
Dependents: 0
Suggesters: 1
Security: 0
Stars: 14
Watchers: 3
Forks: 7
Open Issues: 1
Requires
- php: >=5.4.0
- aliyuncs/oss-sdk-php: ~2.0.4
- league/flysystem: ~1.0
Suggests
- laravel/framework: 5.2.*
This package is not auto-updated.
Last update: 2024-10-26 09:11:44 UTC
README
Aliyun oss driver for Laravel5.0+, also support flysystem adapter.
inspire by orzcc/aliyun-oss
Usage
use Storage; //... Strorage::[everything in doc]
more infomation 更多信息:
Installation
This package can be installed through Composer.
composer require aobozhang/aliyun-oss-adapter
Configuration
This service provider must be registered.
// config/app.php 'providers' => [ ..., Aobo\OSS\AliyunOssFilesystemServiceProvider::class, ];
add config:
// config/filesystem.php. 'oss' => [ 'driver' => 'oss', 'access_id' => env('OSS_ACCESS_ID','your id'), 'access_key' => env('OSS_ACCESS_KEY','your key'), 'bucket' => env('OSS_BUCKET','your bucket'), 'endpoint' => env('OSS_ENDPOINT','your endpoint'), // eg. oss-cn-beijing.aliyuncs.com !!without 'http://' in OSS SDK 2.0+ ],
change default to oss
'default' => 'oss';