. */ declare(strict_types=1); namespace Fisharebest\Webtrees; /** * A list of known or supported mime types */ class Mime { public const DEFAULT_TYPE = 'application/octet-stream'; // Convert extension to mime-type public const TYPES = [ 'bmp' => 'image/bmp', 'css' => 'text/css', 'doc' => 'application/msword', 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'ged' => 'text/x-gedcom', 'gif' => 'image/gif', 'flac' => 'audio/flac', 'htm' => 'text/html', 'html' => 'text/html', 'ico' => 'image/x-icon', 'jpe' => 'image/jpeg', 'jpeg' => 'image/jpeg', 'jpg' => 'image/jpeg', 'js' => 'application/javascript', 'json' => 'application/json', 'mov' => 'video/quicktime', 'mp3' => 'audio/mpeg', 'mp4' => 'video/mp4', 'oga' => 'audio/ogg', 'ogg' => 'audio/ogg', 'ogv' => 'video/ogg', 'pdf' => 'application/pdf', 'png' => 'image/png', 'rar' => 'application/x-rar-compressed', 'svg' => 'image/svg', 'swf' => 'application/x-shockwave-flash', 'tif' => 'image/tiff', 'tiff' => 'image/tiff', 'txt' => 'text/plain', 'webp' => 'image/webp', 'wmv' => 'video/x-ms-wmv', 'xls' => 'application/vnd-ms-excel', 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'xml' => 'application/xml', 'zip' => 'application/zip', ]; }