| Package Data | |
|---|---|
| Maintainer Username: | axdlee |
| Maintainer Contact: | xdlee110@gmail.com (Sheldon Lee) |
| Package Create Date: | 2017-03-15 |
| Package Last Update: | 2017-03-15 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:09:39 |
| Package Statistics | |
|---|---|
| Total Downloads: | 88 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 3 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
基于 https://github.com/upyun/php-sdk 开发
符合Laravel 5 的Storage用法。
v1.0 支持laravel5.4 的upyun存储适配器。
composer require axdlee/upyun-laravel-storage
config/app.php 里面的 providers 数组, 加上一行 Axdlee\UpyunStorage\UpyunStorageServiceProvider::class,
config/filesystem.php 里面的 disks数组加上:
'disks' => [
... ,
'upyun' => [
'driver' => 'upyun',
'bucket' => 'your bucket name',
'operator_name' => 'your operator name',
'operator_password' => 'your operator password',
],
],