githen/iflytek-php-sdk

讯飞 PHP SDK

v1.0.0 2025-04-07 06:36 UTC

This package is auto-updated.

Last update: 2025-04-07 06:37:32 UTC


README

基于laravel的讯飞文本纠错

image image image

安装

composer require githen/iflytek-php-sdk:~v1.0.0

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

配置文件说明

生成iflytek.php上传配置文件

<?php
return [
    /*
    |--------------------------------------------------------------------------
    | 讯飞开放平台配置
    |--------------------------------------------------------------------------
    |
    */
    // 开放平台 AppId
    'app_id' => '',
    // 开放平台秘钥 APISecret
    'api_secret' => '',
    // 开放平台秘钥 APIKey
    'api_key' => '',
    
];