| Package Data | |
|---|---|
| Maintainer Username: | jiaojie1989 |
| Maintainer Contact: | thomasjiao@vip.qq.com (JIAO Jie) |
| Package Create Date: | 2016-08-29 |
| Package Last Update: | 2016-11-17 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-28 03:01:53 |
| Package Statistics | |
|---|---|
| Total Downloads: | 3 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Put Jiaojie\Laravel\Storage\Providers\S3Provider in your config/app.php providers array.
In your config/filesystems.php, put your config array into disks.
"sina" => [
"driver" => "sina",
"access_key" => "YOUR_ACCESS_KEY",
"secret_key" => "YOUR_SECRET_KEY",
"use_ssl" => false,
"endpoint" => "上传的地址URL",
"bucket" => "指定的域名地址",
],
$disk = Storage::disk("sina");
$disk->put("finapp/js/$filename.js", file_get_contents($path));
It will detect the mime type by your defined filename extension, in the example, it is "js".
Thanks to the framework laravel team for its wonderful framework.
Thanks to the league/flysystem for its general api of file system.
Thanks to cloudmario/scs for its api of sina cloud file system.
Finally with many thanks to the php team for its programming language.