Skip to content

Commit 5dac639

Browse files
committed
Added aliases to mime type generation command
1 parent 317a73a commit 5dac639

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Diff for: build/controllers/MimeTypeController.php

+11
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,17 @@ class MimeTypeController extends Controller
3131
*/
3232
private $aliases = [
3333
'text/xml' => 'application/xml',
34+
'image/svg' => 'image/svg+xml',
35+
'image/x-bmp' => 'image/bmp',
36+
'image/x-bitmap' => 'image/bmp',
37+
'image/x-xbitmap' => 'image/bmp',
38+
'image/x-win-bitmap' => 'image/bmp',
39+
'image/x-windows-bmp' => 'image/bmp',
40+
'image/ms-bmp' => 'image/bmp',
41+
'image/x-ms-bmp' => 'image/bmp',
42+
'application/bmp' => 'image/bmp',
43+
'application/x-bmp' => 'image/bmp',
44+
'application/x-win-bitmap' => 'image/bmp',
3445
];
3546

3647
/**

0 commit comments

Comments
 (0)