databases.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. return [
  12. 'default' => [
  13. 'driver' => env('DB_DRIVER', 'mysql'),
  14. 'host' => env('DB_HOST', 'localhost'),
  15. 'database' => env('DB_DATABASE', 'db'),
  16. 'port' => env('DB_PORT', 3306),
  17. 'username' => env('DB_USERNAME', 'user'),
  18. 'password' => env('DB_PASSWORD', 'pwd'),
  19. 'charset' => env('DB_CHARSET', 'utf8mb4'),
  20. 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
  21. 'prefix' => env('DB_PREFIX', 't_'),
  22. 'pool' => [
  23. 'min_connections' => 1,
  24. 'max_connections' => 400,
  25. 'connect_timeout' => 10.0,
  26. 'wait_timeout' => 3.0,
  27. 'heartbeat' => -1,
  28. 'max_idle_time' => (float) env('DB_MAX_IDLE_TIME', 60),
  29. ],
  30. 'commands' => [
  31. 'gen:model' => [
  32. 'path' => 'app/Model',
  33. 'force_casts' => true,
  34. 'inheritance' => 'Model',
  35. ],
  36. ],
  37. ],
  38. ];