lonelywalkersource/laravel-filesystem-oss
最新稳定版本:1.0.6
Composer 安装命令:
composer require lonelywalkersource/laravel-filesystem-oss
包简介
Package description here.
README 文档
README
.
Installing
$ composer require lonelywalkersource/laravel-filesystem-oss
Configuration
- After installing the library, register the
LonelyWalkerSource\LaravelFilesystemOss\OssStorageServiceProviderin yourconfig/app.phpfile:
'providers' => [ LonelyWalkerSource\LaravelFilesystemOss\OssStorageServiceProvider::class, ],
- Add a new disk to your
config/filesystems.phpconfig:
<?php return [ 'disks' => [ //... 'oss' => [ 'driver' => 'oss', 'access_key' => env('OSS_ACCESS_KEY_ID'), 'secret_key' => env('OSS_ACCESS_KEY_SECRET'), 'bucket' => env('OSS_BUCKET'), 'endpoint' => env('OSS_ENDPOINT'), // OSS 外网节点或自定义外部域名 'cdn_domain' => env('OSS_CDN_DOMAIN'), // 如果isCName为true, getUrl会判断cdnDomain是否设定来决定返回的url,如果cdnDomain未设置,则使用endpoint来生成url,否则使用cdn 'ssl' => env('OSS_SSL',false), // true to use 'https://' and false to use 'http://'. default is false, 'is_cname' => env('OSS_IS_CNAME',false), // 是否使用自定义域名,true: 则Storage.url()会使用自定义的cdn或域名生成文件url, false: 则使用外部节点生成url 'debug' => false, 'upload_prefix' => env('OSS_UPLOAD_PREFIX','') ], //... ] ];
Usage
$disk = Storage::disk('oss'); // create a file $disk->put('avatars/filename.jpg', $fileContents); // get timestamp $time = $disk->lastModified('file1.jpg'); // copy a file $disk->copy('old/file1.jpg', 'new/file1.jpg'); // move a file $disk->move('old/file1.jpg', 'new/file1.jpg'); // get file contents $contents = $disk->read('folder/my_file.txt'); // get file url $url = $disk->url('folder/my_file.txt'); $url = $disk->getAdapter()->getUrl('folder/my_file.txt'); // get private url $url = $disk->temporaryUrl('folder/my_file.txt'); $url = $disk->getAdapter()->getTemporaryUrl('folder/my_file.txt');
Contributing
You can contribute in one of three ways:
- File bug reports using the issue tracker.
- Answer questions or fix bugs on the issue tracker.
- Contribute new features or update the wiki.
The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.
License
MIT
统计信息
- 总下载量: 41
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-11-08