Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/katoga/allyourbase

Collection of binary-to-ascii encoders.
https://github.com/katoga/allyourbase

ascii-encoders php

Last synced: 3 days ago
JSON representation

Collection of binary-to-ascii encoders.

Awesome Lists containing this project

README

        

[![PHP](https://github.com/Katoga/allyourbase/actions/workflows/php.yml/badge.svg)][build_status]

# Allyourbase
Collection of binary-to-ascii encoders.

## Installation
```sh
composer require katoga/allyourbase
```

## Usage
```php
$b64 = new \Katoga\Allyourbase\Base64();
$encoded = $b64->encode('Hello world!');
$plain = $b64->decode($encoded);
```

## Supported versions
- [v5](https://github.com/Katoga/allyourbase/tree/master): PHP 8.1+
- [v4](https://github.com/Katoga/allyourbase/tree/release-v4): PHP 8.0+
- [v3](https://github.com/Katoga/allyourbase/tree/release-v3): PHP 8 (deprecated 7.4)
- [v2](https://github.com/Katoga/allyourbase/tree/release-v2): PHP 7.4
- [v1](https://github.com/Katoga/allyourbase/tree/release-v1): PHP 5.6

[build_status]: https://github.com/Katoga/allyourbase/actions/workflows/php.yml