DC Team 的 Laravel 基底框架、資料庫描述、開發規範、環境佈署、版控規範

123456789101112131415161718192021
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Image Driver
  6. |--------------------------------------------------------------------------
  7. |
  8. | Intervention Image supports "GD Library" and "Imagick" to process images
  9. | internally. You may choose one of them according to your PHP
  10. | configuration. By default PHP's "GD Library" implementation is used.
  11. |
  12. | Supported: "gd", "imagick"
  13. |
  14. */
  15. 'driver' => 'gd'
  16. );