Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/katoga/allyourbase
- Owner: Katoga
- License: isc
- Created: 2015-05-04T19:58:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-12-23T12:14:59.000Z (11 months ago)
- Last Synced: 2024-09-29T18:17:41.795Z (about 2 months ago)
- Topics: ascii-encoders, php
- Language: PHP
- Homepage: https://katoga.github.io/allyourbase
- Size: 1.37 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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