githen/laravel-jdt

基于laravel的校对通智能校对

v1.0.0 2025-05-26 05:14 UTC

This package is auto-updated.

Last update: 2025-05-28 02:16:05 UTC


README

基于laravel的校对通智能校对

image image image

安装

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

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

配置文件说明

生成jdt.php上传配置文件

<?php
return [
    /*
    |--------------------------------------------------------------------------
    | 校对通配置
    |--------------------------------------------------------------------------
    |
    */
    // 登录信息
    'app_id' => 'admin',
    'app_secret' => '111111',
    'disk' => 'local',
    'auth_file' => 'app/data/jdt/jdt.txt',
    'son_user' => [
        10 => [
            'son_user_id' => 'admin',
        ],
    ]
    
];