wayofdev/laravel-symfony-serializer
最新稳定版本:v3.0.0
Composer 安装命令:
composer require wayofdev/laravel-symfony-serializer
包简介
???? Laravel wrapper around Symfony Serializer.
关键字:
README 文档
README
Laravel Symfony Serializer
This package integrates the Symfony Serializer component into Laravel, providing a powerful tool for serializing and deserializing objects into various formats such as JSON, XML, CSV, and YAML.
Detailed documentation on the Symfony Serializer can be found on their official page.
????️ Table of Contents
- Purpose
- Installation
- Configuration
- Usage
- Security Policy
- Want to Contribute?
- Contributors
- Social Links
- License
- Credits and Useful Resources
???? Purpose
This package brings the power of the Symfony Serializer component to Laravel. While Laravel does not have a built-in serializer and typically relies on array or JSON transformations, this package provides more advanced serialization capabilities. These include object normalization, handling of circular references, property grouping, and format-specific encoders.
If you are building a REST API, working with queues, or have complex serialization needs, this package will be especially useful. It allows you to use objects as payloads instead of simple arrays and supports various formats such as JSON, XML, CSV, and YAML. This documentation will guide you through the installation process and provide examples of how to use the package to serialize and deserialize your objects.
???? If you find this repository useful, please consider giving it a ⭐️. Thank you!
???? Installation
Require the package as a dependency:
composer require wayofdev/laravel-symfony-serializer
You can publish the config file with:
$ php artisan vendor:publish \ --provider="WayOfDev\Serializer\Bridge\Laravel\Providers\SerializerServiceProvider" \ --tag="config"
???? Configuration
The package configuration file allows you to customize various aspects of the serialization process.
Below is the default configuration provided by the package:
<?php declare(strict_types=1); use Symfony\Component\Serializer\Mapping\Loader\LoaderInterface; use WayOfDev\Serializer\Contracts\EncoderRegistrationStrategy; use WayOfDev\Serializer\Contracts\NormalizerRegistrationStrategy; use WayOfDev\Serializer\DefaultEncoderRegistrationStrategy; use WayOfDev\Serializer\DefaultNormalizerRegistrationStrategy; /** * @return array{ * default: string, * debug: bool, * normalizerRegistrationStrategy: class-string<NormalizerRegistrationStrategy>, * encoderRegistrationStrategy: class-string<EncoderRegistrationStrategy>, * metadataLoader: class-string<LoaderInterface>|null, * } */ return [ 'default' => env('SERIALIZER_DEFAULT_FORMAT', 'symfony-json'), 'debug' => env('SERIALIZER_DEBUG_MODE', env('APP_DEBUG', false)), 'normalizerRegistrationStrategy' => DefaultNormalizerRegistrationStrategy::class, 'encoderRegistrationStrategy' => DefaultEncoderRegistrationStrategy::class, 'metadataLoader' => null, ];
→ Configuration Options
default: Specifies the default serializer format. This can be overridden by setting theSERIALIZER_DEFAULT_FORMATenvironment variable. The default issymfony-json.debug: Enables debug mode forProblemNormalizer. This can be set using theSERIALIZER_DEBUG_MODEenvironment variable. It defaults to theAPP_DEBUGvalue.normalizerRegistrationStrategy: Specifies the strategy class for registering normalizers. The default strategy isWayOfDev\Serializer\DefaultNormalizerRegistrationStrategy.encoderRegistrationStrategy: Specifies the strategy class for registering encoders. The default strategy isWayOfDev\Serializer\DefaultEncoderRegistrationStrategy.metadataLoader: Allows registration of a custom metadata loader. By default,Symfony\Component\Serializer\Mapping\Loader\AttributeLoaderis used.
→ Custom Strategies
Due to Laravel's caching limitations, where configs cannot instantiate objects, this package uses strategies to register normalizers and encoders.
You can create custom normalizer or encoder registration strategies by implementing the respective interfaces.
Normalizer Registration Strategy
To create a custom normalizer registration strategy:
-
Implement the
NormalizerRegistrationStrategyinterface:<?php declare(strict_types=1); namespace Infrastructure\Serializer; use Symfony\Component\Serializer\Mapping\Loader\LoaderInterface; use Symfony\Component\Serializer\Normalizer; use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; use Symfony\Component\Serializer\Normalizer\NormalizerInterface; use WayOfDev\Serializer\Contracts\NormalizerRegistrationStrategy; // ... final readonly class CustomNormalizerRegistrationStrategy implements NormalizerRegistrationStrategy { public function __construct( private LoaderInterface $loader, private bool $debugMode = false, ) { } /** * @return iterable<array{normalizer: NormalizerInterface|DenormalizerInterface, priority: int<0, max>}> */ public function normalizers(): iterable { // ... } }
-
Change
serializer.phpconfig to use your custom strategy:'normalizerRegistrationStrategy' => CustomNormalizerRegistrationStrategy::class,
Encoder Registration Strategy
To create a custom encoder registration strategy:
-
Implement the
EncoderRegistrationStrategyinterface:<?php declare(strict_types=1); namespace Infrastructure\Serializer; use Symfony\Component\Serializer\Encoder; use Symfony\Component\Serializer\Encoder\DecoderInterface; use Symfony\Component\Serializer\Encoder\EncoderInterface; use Symfony\Component\Yaml\Dumper; use function class_exists; final class CustomEncoderRegistrationStrategy implements Contracts\EncoderRegistrationStrategy { /** * @return iterable<array{encoder: EncoderInterface|DecoderInterface}> */ public function encoders(): iterable { // Register your encoders here... yield ['encoder' => new Encoder\JsonEncoder()]; yield ['encoder' => new Encoder\CsvEncoder()]; yield ['encoder' => new Encoder\XmlEncoder()]; if (class_exists(Dumper::class)) { yield ['encoder' => new Encoder\YamlEncoder()]; } } }
-
Change
serializer.phpconfig to use your custom strategy:'encoderRegistrationStrategy' => CustomEncoderRegistrationStrategy::class,
???? Usage
The package provides a list of serializers that can be used to serialize and deserialize objects.
The default serializers available in this package are: symfony-json, symfony-csv, symfony-xml, symfony-yaml.
Warning
The yaml encoder requires the symfony/yaml package and is disabled when the package is not installed. Install the symfony/yaml package, and the encoder will be automatically enabled.
→ Components
SerializerManager
The SerializerManager handles the different serializers available in this package. It can be used to serialize and deserialize objects.
ResponseFactory
The ResponseFactory is used to create responses in Laravel controllers, making it easy to include serialized data in HTTP responses.
Facades
This package includes two Laravel Facades:
Manager— To access the underlyingSerializerManagerSerializer— To access the bound and configured original Symfony Serializer instance.
→ Example DTO
We will use this example DTO for serialization purposes:
<?php namespace Application\User; use Symfony\Component\Serializer\Annotation\Groups; use Symfony\Component\Serializer\Annotation\SerializedName; class UserDTO { #[Groups(['public'])] #[SerializedName('id')] private int $id; #[Groups(['public'])] #[SerializedName('name')] private string $name; #[Groups(['private', 'public'])] #[SerializedName('emailAddress')] private string $email; public function __construct(int $id, string $name, string $email) { $this->id = $id; $this->name = $name; $this->email = $email; } public function id(): int { return $this->id; } public function name(): string { return $this->name; } public function email(): string { return $this->email; } }
→ Using SerializerManager in Service Classes
<?php namespace Application\Services; use WayOfDev\Serializer\Manager\SerializerManager; use Application\User\UserDTO; class ProductService { public function __construct( private readonly SerializerManager $serializer, ) { } public function someMethod(): void { $serializer = $this->serializer->serializer('symfony-json'); $dto = new UserDTO(1, 'John Doe', 'john@example.com'); $serialized = $serializer->serialize( payload: $dto, context: ['groups' => ['private']] ); } }
→ Using ResponseFactory in Laravel Controllers
Here's an example of how you can use the ResponseFactory in a Laravel Controller:
Example Controller:
<?php namespace Bridge\Laravel\Public\Product\Controllers; use Application\User\UserDTO; use Illuminate\Http\Request; use WayOfDev\Serializer\Bridge\Laravel\Http\HttpCode; use WayOfDev\Serializer\Bridge\Laravel\Http\ResponseFactory; class UserController extends Controller { public function __construct(private ResponseFactory $response) { } public function index() { $dto = new UserDTO(1, 'John Doe', 'john@example.com'); $this->response->withContext(['groups' => ['private']]); $this->response->withStatusCode(HttpCode::HTTP_OK); return $this->response->create($dto); } }
→ Using in Laravel Queues
To switch from Laravel's default serialization to this implementation in queues, you can override the __serialize and __unserialize methods in your queue jobs. Here’s an example:
<?php declare(strict_types=1); namespace Bridge\Laravel\Public\Product\Jobs; use Domain\Product\Models\Product; use Domain\Product\ProductProcessor; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; use WayOfDev\Serializer\Bridge\Laravel\Facades\Manager; /** * This Job class shows how Symfony Serializer can be used with Laravel Queues. */ class ProcessProductJob implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; public Product $product; public function __construct(Product $product) { $this->product = $product; } public function handle(ProductProcessor $processor): void { $processor->process($this->product); } public function __serialize(): array { return [ 'product' => Manager::serialize($this->product), ]; } public function __unserialize(array $values): void { $this->product = Manager::deserialize($values['product'], Product::class); } }
???? Security Policy
This project has a security policy.
???? Want to Contribute?
Thank you for considering contributing to the wayofdev community! We welcome all kinds of contributions. If you want to:
- ???? Suggest a feature
- ???? Report an issue
- ???? Improve documentation
- ???????? Contribute to the code
You are more than welcome. Before contributing, please check our contribution guidelines.
???? Contributors
???? Social Links
- Twitter: Follow our organization @wayofdev and the author @wlotyp.
- Discord: Join our community on Discord.
???? License
???? Credits and Useful Resources
This repository is inspired by the following projects:
wayofdev/laravel-symfony-serializer 适用场景与选型建议
wayofdev/laravel-symfony-serializer 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 10.12k 次下载、GitHub Stars 达 21, 最近一次更新时间为 2026 年 01 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「serialize」 「json」 「api」 「serializer」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 wayofdev/laravel-symfony-serializer 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 wayofdev/laravel-symfony-serializer 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 wayofdev/laravel-symfony-serializer 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
LazyPDO is a set of wrappers over PHP's standard PDO and PDOStatement classes. It enables lazy loading, serialization and decoration.
Kinikit - PHP Application development framework MVC component
Transform data structures
Lightweight PHP library that allows exchanging binary data with Qt programs (QDataStream)
ext-json wrapper with sane defaults
A package to cast json fields, each sub-keys is castable
统计信息
- 总下载量: 10.12k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 21
- 点击次数: 26
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04