arokettu / rfc1751
RFC 1751 Encoder/Decoder
1.0.1
2024-07-28 20:40 UTC
Requires
- php: ^7.1 | ^8.0
Requires (Dev)
- phpunit/phpunit: ^7.5 | ^8.5 | ^9.5
- sandfox.dev/code-standard: ^1.2023.12.09
- squizlabs/php_codesniffer: *
- vimeo/psalm: ^5.18
This package is auto-updated.
Last update: 2024-10-28 21:25:25 UTC
README
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.