laravel-eqxiu maintained by githen
Description
基于laravel的易企秀内容中台
Author
Last update
2024/09/12 10:03
(dev-main)
License
Downloads
30
laravel-eqxiu
基于laravel的易企秀内容中台
安装
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',//写入日志频道,空不写入
];