mimeAliases.php 741 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * MIME aliases.
  4. *
  5. * This file contains aliases for MIME types.
  6. *
  7. * All extra changes made to this file must be comitted to /build/controllers/MimeTypeController.php
  8. * otherwise they will be lost on next build.
  9. */
  10. return [
  11. 'text/rtf' => 'application/rtf',
  12. 'text/xml' => 'application/xml',
  13. 'image/svg' => 'image/svg+xml',
  14. 'image/x-bmp' => 'image/bmp',
  15. 'image/x-bitmap' => 'image/bmp',
  16. 'image/x-xbitmap' => 'image/bmp',
  17. 'image/x-win-bitmap' => 'image/bmp',
  18. 'image/x-windows-bmp' => 'image/bmp',
  19. 'image/ms-bmp' => 'image/bmp',
  20. 'image/x-ms-bmp' => 'image/bmp',
  21. 'application/bmp' => 'image/bmp',
  22. 'application/x-bmp' => 'image/bmp',
  23. 'application/x-win-bitmap' => 'image/bmp',
  24. ];