承接 spomky-labs/cbor-bundle 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

spomky-labs/cbor-bundle

Composer 安装命令:

composer require spomky-labs/cbor-bundle

包简介

CBOR Encoder/Decoder Bundle for Symfony.

README 文档

README

Build Status Latest Stable Version Total Downloads License

OpenSSF Scorecard

A Symfony bundle that provides CBOR (Concise Binary Object Representation) encoding and decoding support for the Symfony Serializer component.

CBOR is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. It is defined in RFC 8949.

Features

  • 🔄 Full Symfony Serializer Integration: Works seamlessly with Symfony's serializer component
  • 📦 Complete Type Support: Encode/decode all PHP types (scalars, arrays, objects, enums)
  • ⚙️ Context Options: Fine-grained control over encoding behavior
  • 🎯 Object Serialization: Serialize any PHP object to CBOR format
  • 🔢 Enum Support: Native support for PHP 8.1+ backed and unit enums
  • 📝 Well Documented: Comprehensive PHPDoc and guides
  • Well Tested: Extensive test coverage

Requirements

  • PHP 8.3 or higher
  • Symfony 6.4, 7.x, or 8.x

Installation

Install the bundle using Composer:

composer require spomky-labs/cbor-bundle

If you're using Symfony Flex, the bundle will be automatically registered. Otherwise, register it manually in config/bundles.php:

return [
    // ...
    SpomkyLabs\CborBundle\SpomkyLabsCborBundle::class => ['all' => true],
];

Basic Usage

Encoding Data

use Symfony\Component\Serializer\SerializerInterface;

class MyController
{
    public function __construct(
        private SerializerInterface $serializer
    ) {}

    public function encodeAction(): Response
    {
        $data = [
            'name' => 'John Doe',
            'age' => 30,
            'active' => true,
            'tags' => ['developer', 'symfony']
        ];

        // Serialize to CBOR format
        $cborData = $this->serializer->serialize($data, 'cbor');

        return new Response($cborData, 200, [
            'Content-Type' => 'application/cbor'
        ]);
    }
}

Decoding Data

public function decodeAction(Request $request): Response
{
    $cborData = $request->getContent();

    // Deserialize from CBOR format
    $data = $this->serializer->deserialize($cborData, 'array', 'cbor');

    return $this->json($data);
}

Object Serialization

use App\Entity\Person;

class PersonController
{
    public function serializeObject(Person $person): string
    {
        // Serialize object to CBOR
        return $this->serializer->serialize($person, 'cbor');
    }

    public function deserializeObject(string $cborData): Person
    {
        // Deserialize CBOR back to object
        return $this->serializer->deserialize($cborData, Person::class, 'cbor');
    }
}

Advanced Usage

Context Options

You can control encoding behavior using context options:

// Use single precision floats (smaller size, less precision)
$cbor = $serializer->serialize($data, 'cbor', [
    'cbor_single_precision_float' => true
]);

// Use indefinite length encoding for arrays
$cbor = $serializer->serialize([1, 2, 3], 'cbor', [
    'cbor_indefinite_list' => true
]);

// Use indefinite length encoding for maps
$cbor = $serializer->serialize(['a' => 1], 'cbor', [
    'cbor_indefinite_map' => true
]);

// Use indefinite length for text strings
$cbor = $serializer->serialize('Hello', 'cbor', [
    'cbor_indefinite_text_string' => true
]);

Available context options:

  • cbor_single_precision_float (bool): Use 32-bit floats instead of 64-bit
  • cbor_indefinite_text_string (bool): Use indefinite length for text strings
  • cbor_indefinite_byte_string (bool): Use indefinite length for byte strings
  • cbor_indefinite_list (bool): Use indefinite length for arrays
  • cbor_indefinite_map (bool): Use indefinite length for maps

Enum Support

The bundle natively supports PHP 8.1+ enums:

// Backed enums are encoded as their backing value
enum Status: string
{
    case ACTIVE = 'active';
    case INACTIVE = 'inactive';
}

$cbor = $serializer->serialize(Status::ACTIVE, 'cbor');
// Encodes as "active"

// Unit enums are encoded as their name
enum Color
{
    case RED;
    case GREEN;
}

$cbor = $serializer->serialize(Color::RED, 'cbor');
// Encodes as "RED"

Direct Service Access

You can also use the encoder/decoder services directly:

use SpomkyLabs\CborBundle\CBOREncoder;
use SpomkyLabs\CborBundle\CBORDecoder;

class MyService
{
    public function __construct(
        private CBOREncoder $encoder,
        private CBORDecoder $decoder
    ) {}
}

Or use the service aliases:

class MyService
{
    public function __construct(
        #[Autowire(service: 'cbor.encoder')]
        private $encoder,
        #[Autowire(service: 'cbor.decoder')]
        private $decoder
    ) {}
}

Supported Types

The bundle supports encoding and decoding of:

  • Scalars: int, float, string, bool, null
  • Arrays: Indexed arrays (as CBOR lists) and associative arrays (as CBOR maps)
  • Objects: Any object that can be normalized by Symfony's normalizers
  • Enums: PHP 8.1+ backed and unit enums
  • DateTime: Automatically handled via Symfony's normalizers
  • Nested structures: Arrays of objects, objects containing arrays, etc.

Extending the Bundle

Custom CBOR Tags

You can register custom CBOR tags by implementing TagInterface and tagging the service:

services:
    App\Cbor\CustomTag:
        tags: ['cbor.tag']

Custom CBOR Objects

You can register custom CBOR objects by implementing OtherObjectInterface and tagging the service:

services:
    App\Cbor\CustomObject:
        tags: ['cbor.other_object']

Upgrading

See UPGRADE-4.0.md for migration instructions from version 3.x to 4.0.

Documentation

For more detailed information about CBOR:

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting a pull request.

Security

If you discover a security vulnerability, please follow our security policy.

Support

If you find this project useful and want to support its development:

License

This project is released under the MIT License.

Credits

This bundle is maintained by Florent Morselli and contributors.

spomky-labs/cbor-bundle 适用场景与选型建议

spomky-labs/cbor-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 134.75k 次下载、GitHub Stars 达 5, 最近一次更新时间为 2018 年 09 月 02 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「symfony」 「bundle」 「cbor」 「Concise Binary Object Representation」 「RFC7049」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 spomky-labs/cbor-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 spomky-labs/cbor-bundle 我们能提供哪些服务?
定制开发 / 二次开发

基于 spomky-labs/cbor-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 134.75k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 29
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-09-02