Converter mime type to extension
<?php
$file = file_get_contents('./file.otf');
\Higimo\Mime2Ext::getMime($file); // 'application/vnd.ms-opentype'
\Higimo\Mime2Ext::getExt($file); // otf
\Higimo\Mime2Ext::getExtByFile($file); // otf
\Higimo\Mime2Ext::getExtByMime('application/vnd.ms-opentype'); // otf
\Higimo\Mime2Ext::get('application/vnd.ms-opentype'); // otfcomposer.bat require higimo/mime-2-ext
MIT