web-fu/anymapper
Composer 安装命令:
composer require web-fu/anymapper
包简介
Library that allows to map objects and arrays into objects and arrays with strong type support and pattern detection.
README 文档
README
A library that allows to map objects and arrays into objects and arrays with strong type support and pattern detection.
AnyMapper can get a variety of data inputs (object, arrays and composite of both) and hydrate a destination object or array ensuring safe type handling for the data during the process.
AnyMapper can detect and extract data from public properties, standard getter / setter, use constructors and class factories and optionally perform smart data casting (ie: from a string to a date time).
AnyMapper will not interfere with private or protected properties or methods and cannot grant the resulting object is in a "valid state"
Installation
web-fu/anymapper is available on Packagist and can be installed using Composer.
composer require web-fu/anymapper
Requires PHP 8.1 or newer.
Examples
Simple Mapping
final class MyClass { private string $foo; public string $bar; public function setFoo(string $foo): MyClass { $this->foo = $foo . ' and I was set in a setter'; return $this; } public function getFoo(): string { return $this->foo; } } $source = [ 'foo' => 'I am foo', 'bar' => 'I am bar', ]; // Fill an existing class $destination = new MyClass(); (new \WebFu\AnyMapper\AnyMapper()) ->map($source) ->into($destination) ->run(); echo $destination->getFoo(); // I am foo and I was set in a setter echo PHP_EOL; echo $destination->bar; // I am bar; echo PHP_EOL; // Create a new object of a class $destination = (new \WebFu\AnyMapper\AnyMapper()) ->map($source) ->as(MyClass::class) ->run(); echo $destination->getFoo(); // I am foo and I was set in a setter echo PHP_EOL; echo $destination->bar; // I am bar; echo PHP_EOL;
Casting Strategy
// Use a strategy to customize mapping final class MyClass { public DateTime $value; } $source = [ 'value' => '2022-12-01', ]; $destination = (new \WebFu\AnyMapper\AnyMapper()) ->map($source) ->using( (new \WebFu\AnyMapper\Strategy\AllowedCastingStrategy()) ->allow('string', DateTime::class) ) ->as(MyClass::class) ->run(); echo $destination->value->format('Y-m-d H:i:s'); // 2022-12-01 00:00:00 echo PHP_EOL;
Casting through callbacks
final class MyClass { public int $value; } $source = [ 'value' => true, ]; $destination = (new \WebFu\AnyMapper\AnyMapper()) ->map($source) ->using( (new \WebFu\AnyMapper\Strategy\CallbackCastingStrategy()) ->addMethod( 'bool', 'int', fn (bool $value) => (int) $value, ) ) ->as(MyClass::class) ->run(); echo $destination->value; // 1
DocBlock Type Support
// Use a strategy to customize mapping final class MyClass { /** @var DateTime */ public $value; } $source = [ 'value' => '2022-12-01', ]; $destination = (new \WebFu\AnyMapper\AnyMapper()) ->map($source) ->using( (new \WebFu\AnyMapper\Strategy\DocBlockDetectStrategy()) ) ->as(MyClass::class) ->run(); echo $destination->value->format('Y-m-d H:i:s'); // 2022-12-01 00:00:00 echo PHP_EOL;
Serialization
// Perform a standard serialization final class Bar { private string $element; public function getElement(): string { return $this->element; } public function setElement(string $element): Bar { $this->element = $element; return $this; } } final class Foo { /** @var Bar[] */ private array $bars; /** * @return array */ public function getBars(): array { return $this->bars; } /** * @param array $bars * @return Foo */ public function setBars(array $bars): Foo { $this->bars = $bars; return $this; } } $foo = new Foo(); $foo->setBars([ (new Bar())->setElement('string'), ]); $destination = (new \WebFu\AnyMapper\AnyMapper()) ->map($foo) ->serialize(); var_export($destination); /* array ( 'bars' => array ( 0 => array ( 'element' => 'string', ), ), ) */
See /examples folder for full examples
web-fu/anymapper 适用场景与选型建议
web-fu/anymapper 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 14 次下载、GitHub Stars 达 2, 最近一次更新时间为 2023 年 02 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「array」 「object」 「conversion」 「mapping」 「mapper」 「hydrator」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 web-fu/anymapper 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 web-fu/anymapper 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 web-fu/anymapper 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A set of useful PHP classes.
A library that provides a simple infrastructure to create your own converters and to perform any conversion you want
Runn Me! Value Objects Library
Laravel SDK mapping data in object
Trait providing methods to set class properties with an array.
Traits to build collections of specific objects
统计信息
- 总下载量: 14
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-02-26