mackrais-organization / property-transform
A PHP library for transforming DTO properties using attributes with support for PHP functions, DI services, and nested object transformation.
Fund package maintenance!
mackrais
Requires
- php: >=8.3
- psr/clock: ^1.0
- psr/container: ^1.1 || ^2.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.64
- phpstan/phpstan: ^1.12
- phpstan/phpstan-phpunit: ^1.4
- phpunit/phpunit: ^11.3
- rregeer/phpunit-coverage-check: ^0.3.1
- slam/phpstan-extensions: ^6.4
- squizlabs/php_codesniffer: ^3.10
- thecodingmachine/phpstan-strict-rules: ^1.0
This package is auto-updated.
Last update: 2025-03-15 20:22:08 UTC
README
Overview
The Property Transform library provides a powerful way to automatically transform DTO properties using PHP attributes.
This allows you to apply transformations such as trimming, formatting, and sanitization directly on properties, while also supporting nested object transformation and dependency injection.
🔥 Features
- ✅ Transform DTO properties using PHP attributes
- ✅ Supports multiple transformations per property (e.g., trim + lowercase)
- ✅ Applies transformations to nested objects automatically
- ✅ Supports callable PHP functions (
trim
,strtolower
, etc.) - ✅ Works with Dependency Injection (DI) for custom transformations
- ✅ Supports class methods as transformers (
[ClassName::class, 'method']
) - ✅ Lightweight & efficient – no runtime overhead
📌 Table of Contents
🛠 Installation
Install via Composer:
composer require mackrais-organization/property-transform
🚀 Usage
1️⃣ Basic DTO Transformation
You can use built-in PHP functions as transformers by adding attributes:
use MackRais\PropertyTransform\Transform; class UserDto { #[Transform('trim')] #[Transform('strtolower')] public string $name; #[Transform('intval')] public string $age; }
Then, apply transformations:
$dto = new UserDto(); $dto->name = ' John Doe '; $dto->age = '25'; $dataTransformer = new DataTransformer(new TransformerFactory($container)); $dataTransformer->transform($dto); echo $dto->name; // Output: "john doe" echo $dto->age; // Output: 25 (converted to integer)
🎯 Examples
2️⃣ Nested DTO Transformation
If a DTO contains another DTO, transformations will apply recursively:
class AddressDto { #[Transform('trim')] #[Transform('strtolower')] public string $city; } class UserDto { #[Transform('trim')] #[Transform('strtolower')] public string $name; #[Transform] // Required for nested transformation public AddressDto $address; }
Usage:
$address = new AddressDto(); $address->city = ' New York '; $dto = new UserDto(); $dto->name = ' Jane Doe '; $dto->address = $address; $dataTransformer->transform($dto); echo $dto->name; // Output: "jane doe" echo $dto->address->city; // Output: "new york"
3️⃣ Using Class Methods as Transformers
You can also define a custom transformer method inside a class:
class SecuritySanitizer { public function sanitize(?string $input): string { return strip_tags((string) $input); } }
And use it as a transformer:
class UserDto { #[Transform([SecuritySanitizer::class, 'sanitize'])] public string $bio; }
🏗 Dependency Injection Support
Transformers can be registered as public services in Symfony or any DI container.
Example using PSR-11 Container:
use Psr\Container\ContainerInterface; $container = new SomePsr11Container(); $factory = new TransformerFactory($container); $dataTransformer = new DataTransformer($factory);
Now, any service-based transformer (like SecuritySanitizer
) will be automatically resolved.
📜 License
Property Transform is released under the MIT License. See the LICENSE.md
file for details.