teamneusta/converter-bundle

Allows using the Converter & Populator design pattern for transformations from one universe to another

Installs: 5 242

Dependents: 3

Suggesters: 0

Security: 0

Stars: 5

Watchers: 13

Forks: 4

Open Issues: 12

Type:symfony-bundle

v1.6.0 2024-06-13 15:19 UTC

README

A default implementation of the Converter & Populator design pattern.

Installation

  1. Require the bundle

    composer require teamneusta/converter-bundle
  2. Enable the bundle

    Add the Bundle to your config/bundles.php:

    Neusta\ConverterBundle\NeustaConverterBundle::class => ['all' => true],

    This is important for preloading the default configuration of provided converter implementations which can be reused and simplify your code and further updates.

Usage

Contribution

Feel free to open issues for any bug, feature request, or other ideas.

Please remember to create an issue before creating large pull requests.

Local Development

To develop on local machine, the vendor dependencies are required.

bin/composer install

We use composer scripts for our main quality tools. They can be executed via the bin/composer file as well.

bin/composer cs:fix
bin/composer phpstan
bin/composer tests