17 lines
629 B
PHP
17 lines
629 B
PHP
<?php
|
|
|
|
return [
|
|
'path' => root_path() . 'uploads',
|
|
'max_size_mb' => 100,
|
|
'allowed_images' => ['image/jpeg', 'image/jpg', 'image/pjpeg', 'image/png', 'image/x-png', 'image/gif', 'image/webp', 'image/bmp'],
|
|
'allowed_videos' => ['video/mp4', 'video/webm', 'video/quicktime'],
|
|
'allowed_audios' => ['audio/mpeg', 'audio/wav', 'audio/ogg', 'audio/webm'],
|
|
'allowed_documents' => [
|
|
'application/pdf',
|
|
'text/plain',
|
|
'text/markdown',
|
|
'application/msword',
|
|
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
],
|
|
];
|