gming/qiniu-oss-for-laravel

There is no license information available for the latest version (v1.0.4) of this package.

v1.0.4 2018-05-31 01:47 UTC

This package is auto-updated.

Last update: 2024-04-29 04:06:08 UTC


README

Installation

$ composer require gming/qiniu-oss-for-laravel --prefer-source

Then add the service provider to config/app.php

Gming\QiniuOss\QiniuOssServiceProvider::class

Publish the config file:

$ php artisan vendor:publish --provider='Gming\QiniuOss\QiniuOssServiceProvider' 

Finally, add feature trait into class:

use Gming\QiniuOss\Traits\QiniuOss;

class Example extends ExampleParent
{
    use QiniuOss;
}

All available APIs are listed below.

QiniuOss

\Gming\QiniuOss\Traits\QiniuOss

$this->uploadCertificate($fileUrl, $maxFileSize, $ttl = 3600, $customParam = '')
$this->fileInfo($fileUri, $fileName = '')
$this->fileBaseUrl()