githen/laravel-percent

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

v1.0.5 2023-12-23 01:36 UTC

This package is auto-updated.

Last update: 2024-05-23 02:39:15 UTC


README

基于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', 
        ],
    ]
    
];