Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hevertonfreitas/base65536

Base65536 implementation in PHP
https://github.com/hevertonfreitas/base65536

Last synced: about 2 months ago
JSON representation

Base65536 implementation in PHP

Awesome Lists containing this project

README

        

# Base65536

[![Build Status](https://travis-ci.org/hevertonfreitas/base65536.svg?branch=master)](https://travis-ci.org/hevertonfreitas/base65536)
[![Latest Stable Version](https://poser.pugx.org/hevertonfreitas/base65536/v/stable)](https://packagist.org/packages/hevertonfreitas/base65536)
[![Total Downloads](https://poser.pugx.org/hevertonfreitas/base65536/downloads)](https://packagist.org/packages/hevertonfreitas/base65536)
[![Latest Unstable Version](https://poser.pugx.org/hevertonfreitas/base65536/v/unstable)](https://packagist.org/packages/hevertonfreitas/base65536)
[![StyleCI](https://styleci.io/repos/54432774/shield)](https://styleci.io/repos/54432774)
[![License](https://poser.pugx.org/hevertonfreitas/base65536/license)](http://opensource.org/licenses/MIT)

PHP implementation of the [base65536](https://github.com/ferno/base65536) algorithm.

## Installation

```bash
composer require hevertonfreitas/base65536
```

## Usage

```php
require 'vendor/autoload.php';

use \Hevertonfreitas\Base65536\Base65536;

$encodedString = Base65536::encode('hello world'); // Output: 驨ꍬ啯𒁷ꍲᕤ

$decodedString = Base65536::decode($encodedString); // Output: hello world
```

## Credits
Javascript original implementation: [base65536](https://github.com/ferno/base65536).

## License

The MIT License (MIT)