Files
laralog/config/plugins.php
T

38 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| 插件目录
|--------------------------------------------------------------------------
*/
'path' => base_path('plugins'),
/*
|--------------------------------------------------------------------------
| 已启用插件(vendor.name
| 也可以通过后台 Plugins 页面修改,此时该数组会被持久化到数据库
|--------------------------------------------------------------------------
*/
'enabled' => [
'neatstudio.blog-seo',
'neatstudio.ai-moderation',
'neatstudio.payment',
'neatstudio.membership',
],
/*
|--------------------------------------------------------------------------
| 插件缓存文件(启用状态、manifest 的运行时缓存)
|--------------------------------------------------------------------------
*/
'cache_file' => base_path('bootstrap/cache/plugins.php'),
];