grixu/data-factories

Simple DTOs factories
1,769
Install
composer require grixu/data-factories
Latest Version:2.1.0
PHP:^8.0
License:MIT
Last Updated:Jul 26, 2026
Links: GitHub  ·  Packagist
Maintainer: grixu

Data-factories

Simple factories for DTO (spatie/data-transfer-objects) and DTO Collections.

Installation

You can install the package via composer:

composer require grixu/data-factories

Usage

use Grixu\DataFactories\Factory;

class CustomerDataFactory extends Factory
{
    public function create(array $parameters = []): CustomerData
    {
        return new CustomerData(
            $parameters +
            [
                'name' => 'Testowy klient',
                'country' => 'PL',
                'postalCode' => '87-100',
                'city' => 'Toruń',
                'vatNumber' => '9562338798',
                'street' => 'Polna 140B',
                'voivodeship' => 'Kujawsko-pomorskie',
                'district' => 'Toruń',
                'paymentPeriod' => 15,
                'syncTs' => now(),
                'updatedAt' => now(),
                'xlId' => 1,
                'xlOperatorId' => 1,
            ]
        );
    }
}

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email mateusz.gostanski@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

grixu/socius-models

Models for Socius API and all apps using Socius which need to keep local copy of...

1,823 0
grixu/synchronizer

Tools for sync data from DTO (foreign system) to local DB

1,487 0
grixu/socius-dto

Simple class for wrapping data with relations

1,279 0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0