wangshixiang/alioss-uploader

aliyun oss static file uploader

0.0.5 2018-08-23 08:05 UTC

This package is not auto-updated.

Last update: 2024-05-10 10:23:16 UTC


README

auto upload static file to aliyun oss

how to use

1. install

composer require wangshixiang/alioss-uploader

2. config

<?php
include_once 'vendor/autoload.php';
use wangshixiang\alioss_uploader\lib\Main;
$main = new Main([
    'accessKeyId' => '',
    'accessKeySecret' => '',
    'endpoint' => '',
    'bucket' => '',
    'oss_basepath' => '',//'','app/' the base dir you want to upload to,empty for root path
    'ignore' => [
        '.git',
        '.idea',
        'bower_components',
        '.gitignore',
        'bower.json',
    ],// ignore path or file
    'source' => 'C:\Users\Administrator\Desktop\wuliu',
    'uploadList' => [
        'test.txt'
    ]//white list,upload list item only,empty for all file
]);
$main->run();

3. run

php index.php