app.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /*
  3. * This file is part of ibrand/EC-Open-Core.
  4. *
  5. * (c) 果酱社区 <https://guojiang.club>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. return [
  11. 'database' => [
  12. 'prefix' => env('APP_DB_PREFIX', 'ibrand_'),
  13. ],
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Access via `https`
  17. |--------------------------------------------------------------------------
  18. |
  19. |If your page is going to be accessed via https, set it to `true`.
  20. |
  21. */
  22. 'secure' => env('SECURE', false),
  23. 'pay_debug' => env('PAY_DEBUG', false),
  24. 'api_version' => env('API_VERSION', 'v1'),
  25. 'model_alias'=>env('MODEL_ALIAS',false),
  26. /*
  27. |--------------------------------------------------------------------------
  28. | 订单未付款自动取消时间,单位分钟
  29. |--------------------------------------------------------------------------
  30. */
  31. 'order_auto_cancel' => 30,
  32. ];