Converts mime types to the proper file extensions and vice versa.
composer require apxcde/mime-typesCreate a new mime type converter instance:
use Apxcde\MimeTypes\MimeTypeConverter;
$converter = new MimeTypeConverter;Get the proper mime type for a file extension:
echo $converter->toMimeType('jpeg');or find a file extension to the given mime type:
echo $converter->toExtension('image/jpeg');Multiple extensions could belong to the same mime type so the code above will return with the first matching one.
Create the Docker based development environment:
make devCheck the coding style and run unit tests:
make test