Looking to hire Laravel developers? Try LaraJobs

laravel-percent maintained by githen

Description
基于laravel的百分点智能媒体校对
Author
Last update
2024/09/12 10:26 (dev-main)
License
Links
Downloads
187

Comments
comments powered by Disqus

laravel-percent

基于laravel的百分点智能媒体校对

image image image

安装

composer require githen/laravel-percent:~v1.0.0

# 迁移配置文件
php artisan vendor:publish --provider="Githen\LaravelPercent\Providers\PercentServiceProvider"

配置文件说明

生成percent.php上传配置文件

<?php
return [
    /*
    |--------------------------------------------------------------------------
    | 百分点配置
    |--------------------------------------------------------------------------
    |
    */
    // 登录信息
    'name' => 'admin',
    'password' => '111111',
    'disk' => 'local',
    'auth_file' => 'app/data/percent/admin.txt',// 每个账号的auth_file不能相同
    'sub_account' => [
        10 => [
            'name' => 'admin1',
            'password' => '111111',
            'disk' => 'local',
            'auth_file' => 'app/data/percent/admin1.txt', 
        ],
    ]
    
];