PHP Package: 2tvenom/cborencode

A PHP library for encoding data in Concise Binary Object Representation format efficiently and quickly.

Current Version: 1.0.2
Last Updated: 2020-11-03
PHP Requirement: >=7.1
Dependencies: psr/log
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

CBORencode is a PHP library that provides high-performance encoding of data in the Concise Binary Object Representation (CBOR) format. It offers a simple and efficient way to serialize data structures into binary form and is ideal for applications requiring compact data transmission and storage. With support for a wide range of data types and a focus on speed and efficiency, CBORencode is a versatile tool for developers working with binary data.

🔗 View on GitHub

Download Latest Version: 1.0.2

Download Download v1.0.2

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/2tvenom/cborencode/1.0.2/autoload.php';

use CBORencode\Encoder;


$obj = new CBORencode\Encoder();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.