first commit
This commit is contained in:
24
vendor/yiisoft/yii2/helpers/mimeAliases.php
vendored
Normal file
24
vendor/yiisoft/yii2/helpers/mimeAliases.php
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* MIME aliases.
|
||||
*
|
||||
* This file contains aliases for MIME types.
|
||||
*
|
||||
* All extra changes made to this file must be committed to /build/controllers/MimeTypeController.php
|
||||
* otherwise they will be lost on next build.
|
||||
*/
|
||||
return [
|
||||
'text/rtf' => 'application/rtf',
|
||||
'text/xml' => 'application/xml',
|
||||
'image/svg' => 'image/svg+xml',
|
||||
'image/x-bmp' => 'image/bmp',
|
||||
'image/x-bitmap' => 'image/bmp',
|
||||
'image/x-xbitmap' => 'image/bmp',
|
||||
'image/x-win-bitmap' => 'image/bmp',
|
||||
'image/x-windows-bmp' => 'image/bmp',
|
||||
'image/ms-bmp' => 'image/bmp',
|
||||
'image/x-ms-bmp' => 'image/bmp',
|
||||
'application/bmp' => 'image/bmp',
|
||||
'application/x-bmp' => 'image/bmp',
|
||||
'application/x-win-bitmap' => 'image/bmp',
|
||||
];
|
||||
Reference in New Issue
Block a user