githen / laravel-percent
基于laravel的百分点智能媒体校对
v1.0.6
2024-09-12 08:26 UTC
Requires
- php: ^7.3
- ext-json: *
- guzzlehttp/guzzle: ~6.0|^7.0
- illuminate/support: ^6.20|^8.0
README
基于laravel的百分点智能媒体校对
安装
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', ], ] ];