12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /*
- * This file is part of ibrand/EC-Open-Core.
- *
- * (c) 果酱社区 <https://guojiang.club>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- return [
- 'database' => [
- 'prefix' => env('APP_DB_PREFIX', 'ibrand_'),
- ],
- /*
- |--------------------------------------------------------------------------
- | Access via `https`
- |--------------------------------------------------------------------------
- |
- |If your page is going to be accessed via https, set it to `true`.
- |
- */
- 'secure' => env('SECURE', false),
- 'pay_debug' => env('PAY_DEBUG', false),
- 'api_version' => env('API_VERSION', 'v1'),
- 'model_alias'=>env('MODEL_ALIAS',false),
- /*
- |--------------------------------------------------------------------------
- | 订单未付款自动取消时间,单位分钟
- |--------------------------------------------------------------------------
- */
- 'order_auto_cancel' => 30,
- ];
|