githen / laravel-eqxiu
基于laravel的易企秀内容中台
v1.1.3
2024-09-12 08:03 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-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',//写入日志频道,空不写入 ];