Sina S3 storage service provider, made by SINA finance client api team.
jiaojie/laravel5-sina-storage is a Laravel package for sina s3 storage service provider, made by sina finance client api team..
It currently has 0 GitHub stars and 3 downloads on Packagist (latest version 0.1.1).
Install it with composer require jiaojie/laravel5-sina-storage.
Discover more Laravel packages by jiaojie
or browse all Laravel packages to compare alternatives.
Last updated
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.