Browse Source

read IMAGE_DRIVER from env

trwnh 5 years ago
parent
commit
02e5abf3b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/image.php

+ 1 - 1
config/image.php

@@ -15,6 +15,6 @@ return [
     |
     |
     */
     */
 
 
-    'driver' => 'gd',
+    'driver' => env('IMAGE_DRIVER', 'gd'),
 
 
 ];
 ];