承接 micro-module/decorator-bundle 相关项目开发

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

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

micro-module/decorator-bundle

Composer 安装命令:

composer require micro-module/decorator-bundle

包简介

Symfony bundle to handle decorators in the service containers

README 文档

README

Gitter Build Status Dependency Status Average time to resolve an issue Percentage of issues still open

Provides consistent decorator handling for the Symfony Dependency Injection Container.

Installation

For Symfony 3.3 up to 4:

composer require internations/decorator-bundle

For Symfony < 3.3:

composer require internations/decorator-bundle:~0

Usage

"Decorate this"-mode

In "decorate this"-mode you declare your decorators in the dependency at hand. A configuration example:

<service id="iterator" class="ArrayIterator">
    <argument type="collection">
        <argument type="string">element1</argument>
        <argument type="string">element2</argument>
    </argument>
    <tag name="decorator.decorate_this" decorator_id="infinite_iterator"/>
</service>

<service id="infinite_iterator" class="InifiteIterator" public="false">
    <argument type="service" id="__subject__"/>
</service>

The configuration above will create this instance:

$iterator = new InfiniteIterator(
    new ArrayIterator(['element1', 'element2'])
);

"Decorate other" mode

In "decorate other"-mode you declare the subjects you are decorating in the decorator definition itself. A configuration example:

<service id="iterator" class="ArrayIterator">
    <argument type="collection">
        <argument type="string">element1</argument>
        <argument type="string">element2</argument>
    </argument>
</service>

<service id="infinite_iterator" class="InifiteIterator" public="false">
    <argument type="service" id="__subject__"/>
    <tag name="decorator.decorate_other" service_id="iterator"/>
</service>

The configuration above will again create this instance:

$iterator = new InfiniteIterator(
    new ArrayIterator(['element1', 'element2'])
);

Specifying priorities

To control the order of decoration, setting a priority flag for the decorator is supported. Priority can be between PHP_INT_MAX and -PHP_INT_MAX, the default priority is 0.

<service id="infinite_iterator" class="InifiteIterator" public="false">
    <argument type="service" id="__subject__"/>
    <tag name="decorator.decorate_other" service_id="iterator" priority="255"/>
</service>

Using the Bundle programmatically

In cases where you want to reuse the decoration functionality outside of the XML config, you can use the following API in your Compiler Pass. Here is an example to add decorate service common_service with the decorator special_decorator and priority 255.

namespace ;

use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use InterNations\Bundle\DecoratorBundle\Tagger\DecorationTagger;
use Symfony\Component\DependencyInjection\ContainerBuilder;

class MyCompilerPass implements CompilerPassInterface
{
    public function process(ContainerBuilder $container)
    {
        DecorationTagger::tag($container, 'common_service', 'special_decorator', 255);
    }
}

Credits

Based on Dovydas Bartkevicius’ idea, with a bunch of input from Max Beutel.

micro-module/decorator-bundle 适用场景与选型建议

micro-module/decorator-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 154 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 06 月 06 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 micro-module/decorator-bundle 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 154
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-06-06