jdcode/dto-php

Simple and flexible Data Transfer Object library with validations

Installs: 39

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/jdcode/dto-php

v1.0.0 2025-06-22 22:45 UTC

This package is auto-updated.

Last update: 2025-12-23 00:00:18 UTC


README

PHP version

Dto-Php

Simple and flexible Data Transfer Object library with validations

Installation

Composer

composer require jdcode/dto-php

Usage

Class Dto

use JDCode\DtoPhp\DtoPhp;

class StoreUserDto extends DtoPhp
{
    public string $username;
    public string $password;
    public int $age;
}

In your UseCase class

$dto = new StoreUserDto([
    'username' => 'admin',
    'password => '123456'
    'age' => 99
]);

Validation

Currently it only has 3 basic validations

Class Dto

use JDCode\DtoPhp\DtoPhp;
use JDCode\DtoPhp\Validations\MinLength;
use JDCode\DtoPhp\Validations\MaxLength;
use JDCode\DtoPhp\Validations\Email;

class StoreUserDto extends DtoPhp
{
    #[MinLength(length: 3), MaxLength(length: 10)]
    public string $username;

    public string $password;

    #[Email]
    public string $email

    public int $age;
}

You can use $dto->validated() to know if the validation was correct and $dto->getErrors() to get the error messages.

Type Class object

If your property type is a DTO object, just placing it will automatically cast it.

Class Dto

use JDCode\DtoPhp\DtoPhp;

class StoreUserDto extends DtoPhp
{
    public string $username;
    public string $password;
    public int $age;
    public RoleDto $role
}
use JDCode\DtoPhp\DtoPhp;

class RoleDto extends DtoPhp
{
    public int $id;
    public string $name;
}

In your UseCase class

$dto = new StoreUserDto([
    'username' => 'admin',
    'password => '123456'
    'age' => 99,
    'roles' => [
        'id' => 1,
        'name' => 'Administrator'
    ]
]);

Array Object

If you need an object array, just by placing the corresponding attribute you will get your object array.

use JDCode\DtoPhp\DtoPhp;

class RoleDto extends DtoPhp
{
    public int $id;
    public string $name;
}
use JDCode\DtoPhp\DtoPhp;
use JDCode\DtoPhp\Casters\CastArrayWithObject;

class StoreUserDto extends DtoPhp
{
    public string $username;
    public string $password;

    #[CastArrayWithObject(Role::class)]
    public array $roles;
}

In your UseCase class

$dto = new StoreUserDto([
    'username' => 'admin',
    'password => '123456'
    'age' => 99,
    'roles' => [
       [
            'id' => 1,
            'name' => 'Administrator'
       ],
       [
            'id' => 2,
            'name' => 'Moderator'
       ]
    ]
]);

var_dump($dto->roles) // returns RoleDto[]

License

MIT