Files
fluent-chat/config/chat.php
Meghdad edc7f1955e
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
change file limitation logic
2026-05-01 11:46:47 +03:30

10 lines
302 B
PHP

<?php
return [
'attachments' => [
'max_files' => (int) env('CHAT_ATTACHMENT_MAX_FILES', 5),
'max_file_size_kilobytes' => (int) env('CHAT_ATTACHMENT_MAX_FILE_SIZE_KB', 2 * 1024 * 1024),
'livewire_max_upload_time' => (int) env('CHAT_LIVEWIRE_MAX_UPLOAD_TIME', 60),
],
];