githen/laravel-eqxiu

基于laravel的易企秀内容中台

v1.1.3 2024-09-12 08:03 UTC

This package is auto-updated.

Last update: 2025-03-12 09:03:53 UTC


README

基于laravel的易企秀内容中台

image image image

内容中台技术手册

安装

composer require githen/laravel-eqxiu:~v1.1.0

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

配置文件说明

在config/logging.php中添加eqxiu日志配置项

'eqxiu' => [
    'driver' => 'daily',
    'path' => storage_path('logs/eqxiu/eqxiu.log'),
    'level' => 'debug',
    'days' => 7,
    'permission' => 0770,
],

生成eqxiu.php上传配置文件

<?php
return [
    /*
    |--------------------------------------------------------------------------
    | 易企秀配置
    |--------------------------------------------------------------------------
    |
    */
    // 产品秘钥
    'app_id' => '',
    'app_key' => '',
    // 产品秘钥
    'signature_key' => '',
    'encoding_key' => '',
    'log_channel' => 'eqxiu',//写入日志频道,空不写入
];