-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmime-types.php
32 lines (31 loc) · 1.05 KB
/
mime-types.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
return [
// JSON
'text/json' => 'json',
'text/x-json' => 'json',
'application/json' => 'json',
'application/x-json' => 'json',
'application/vnd.api+json' => 'json',
// XML
'text/xml' => 'xml',
'application/xml' => 'xml',
'application/xhtml+xml' => 'xml',
'application/rss+xml' => 'xml',
'application/soap+xml' => 'xml',
'image/svg+xml' => 'xml',
// HTML
'text/html' => 'html',
// Text
'text/plain' => 'text',
'text/css' => 'text',
'text/javascript' => 'text',
'text/ecmascript' => 'text',
'application/javascript' => 'text',
'application/x-javascript' => 'text',
'application/ecmascript' => 'text',
// Binary
'application/octet-stream' => 'binary',
'image/gif' => 'binary',
'image/jpeg' => 'binary',
'image/png' => 'binary',
];