arokettu/rfc1751

RFC 1751 Encoder/Decoder

Installs: 26

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

pkg:composer/arokettu/rfc1751

1.0.1 2024-07-28 20:40 UTC

This package is auto-updated.

Last update: 2025-09-27 00:11:07 UTC


README

Packagist PHP Version License Gitlab CI Codecov

RFC 1751 encoder and decoder library for PHP.

Installation

composer require 'arokettu/rfc1751'

Simple use

<?php

\Arokettu\Rfc1751\Rfc1751::encode("\x01\x23\x45\x67\x89\xab\xcd\xef");
// = 'AIM HEW BLUM FED MITE WARM'
\Arokettu\Rfc1751\Rfc1751::decode('AIM HEW BLUM FED MITE WARM');
// = "\x01\x23\x45\x67\x89\xab\xcd\xef"

Documentation

Read full documentation here: https://sandfox.dev/php/rfc1751.html

Support

Please file issues on our main repo at GitLab: https://gitlab.com/sandfox/php-rfc1751/-/issues

Feel free to ask any questions in our room on Gitter: https://gitter.im/arokettu/community

License

The library is available as open source under the terms of the MIT License.