15 lines
373 B
PHP
Executable File
15 lines
373 B
PHP
Executable File
<?php
|
|
|
|
return [
|
|
'route' => 'images',
|
|
'path' => storage_path('images'),
|
|
'templates' => array(
|
|
'small' => \Meoran\Images\Templates\Small::class,
|
|
'medium' => \Meoran\Images\Templates\Medium::class,
|
|
'large' => \Meoran\Images\Templates\Large::class,
|
|
),
|
|
'lifetime' => 10,
|
|
'cache' => [
|
|
'path' => storage_path('app')
|
|
]
|
|
]; |