├── .github └── workflows │ └── build.yaml ├── LICENSE ├── README.md ├── composer.json ├── psalm-baseline.xml └── src ├── Dictionary.php ├── Exception └── DictionaryException.php ├── GMPShortener.php ├── Number └── BigInt │ ├── Converter.php │ └── ConverterInterface.php └── Shortener.php /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/composer.json -------------------------------------------------------------------------------- /psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/psalm-baseline.xml -------------------------------------------------------------------------------- /src/Dictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/src/Dictionary.php -------------------------------------------------------------------------------- /src/Exception/DictionaryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/src/Exception/DictionaryException.php -------------------------------------------------------------------------------- /src/GMPShortener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/src/GMPShortener.php -------------------------------------------------------------------------------- /src/Number/BigInt/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/src/Number/BigInt/Converter.php -------------------------------------------------------------------------------- /src/Number/BigInt/ConverterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/src/Number/BigInt/ConverterInterface.php -------------------------------------------------------------------------------- /src/Shortener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgrajcarek/uuid-shortener/HEAD/src/Shortener.php --------------------------------------------------------------------------------