<?php
$path = __DIR__.'/./../tmp/';
return [ 'path' => $path,
'swoole' => [ 'status' => true, 'ip' => '127.0.0.1', 'port' => '8866', ],
'download' => [ 'image' => true, 'voice' => true, 'video' => true, 'emoticon' => true, 'file' => true, 'emoticon_path' => $path.'emoticons', ],
'console' => [ 'output' => true, 'message' => true, ],
'log' => [ 'level' => 'debug', 'permission' => 0777, 'system' => $path.'log', 'message' => $path.'log', ],
'cache' => [ 'default' => 'redis', 'stores' => [ 'file' => [ 'driver' => 'file', 'path' => $path.'cache', ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', ], ], ],
'extension' => [ 'admin' => [ 'remark' => '', 'nickname' => '', ], ], ];
|