mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:01:24 +00:00
21 lines
542 B
PHP
21 lines
542 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Image Driver
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option controls the default image processing driver that will be
|
|
| used when manipulating or converting images. This driver is always
|
|
| utilized unless another driver is explicitly specified instead.
|
|
|
|
|
| Supported: "gd", "imagick"
|
|
|
|
|
*/
|
|
|
|
'default' => env('IMAGE_DRIVER', 'imagick'),
|
|
|
|
];
|