This commit is contained in:
Cassandre Cantet
2017-10-04 00:11:25 +02:00
commit 95885c790e
12 changed files with 539 additions and 0 deletions

15
config/image.php Executable file
View File

@@ -0,0 +1,15 @@
<?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')
]
];