Convert UUID 32-character hex string into a Base32 short string and back.
composer require katteba/uuidshortener
<?php
use Katteba\UUID\UUIDShortener;
$uuid = '...';
$compressedUuid = UUIDShortener::encode($uuid);
<?php
use Katteba\UUID\UUIDShortener;
$compressedUuid = '...';
$uuid = UUIDShortener::decode($compressedUuid);