frank-houweling / cartograph
Map objects to objects
Installs: 31 757
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 1
Requires
- php: ^7.1
- psr/container: ^1.0.0
Suggests
- doctrine/orm: Allows usage of the EntityMappingRepository, which handles proxy classes.
This package is auto-updated.
Last update: 2025-03-28 17:38:58 UTC
README
This library is used to Map PHP object to other objects
Installation
Install this library using composer
composer require frank-houweling/cartograph
Getting Started
To use this library create an instance of the MapperService
, using your preffered MappingRepositoryInterface
<?php use FrankHouweling\Cartograph\MapperService; use FrankHouweling\Cartograph\Mapping\DirectMapping; use FrankHouweling\Cartograph\MappingRepository; $foo = new Foo(); $bar = new Bar(); // Initiate the MapperService $mappingRepository = new MappingRepository(); $mapperService = new MapperService($mappingRepository); // Register a mapping from Foo, to Bar using the DirectMapping $mappingRepository->addMapping(Foo::class, Bar::class, DirectMapping::class); // Map Foo -> Bar. Will fetch the previously registered Mapping $mapperService->map($foo, $bar);
Creating custom Mappings
The DirectMapping
uses reflection to map attributes 1:1. Should this not meet your requirements, you can create
a custom mapping by implementing the MappingInterface
and registering it to the MappingRepository
as shown above.