Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 943 Bytes

README.md

File metadata and controls

50 lines (30 loc) · 943 Bytes

Encoder

License

Overview

Encoder and decoder for arbitrary data.

Installation

composer require tiny-blocks/encoder

How to use

The library exposes concrete implementations for encoding and decoding data.

Using Base62

$encoded = Base62::encode(value: 'Hello world!') # T8dgcjRGuYUueWht

Base62::decode(value: $encoded) # Hello world!

License

Encoder is licensed under MIT.

Contributing

Please follow the contributing guidelines to contribute to the project.