Skip to content

A Symfony Bundle for Fractal by League. Implements dependency injection into your transformers

Notifications You must be signed in to change notification settings

fd6130/FractalBundle

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fractal Bundle

This bundle provides integration of league/fractal for Symfony. In addition it allows you to use transformers as a services.

This is a fork version of samjarrett/FractalBundle.

Getting Started

Requirements:

  • PHP >= 7.4
  • Symfony 4, 5 and 6

Install through composer:

composer require fd6130/fractal-bundle

If you are using symfony flex, it will automatic register the bundle for you.

Usage

You can use command php bin/console make:fractal-transformer to create a transformer.

Or, just create it by your own and place it in src/Transformer.

class UserTransformer extends TransformerAbstract
{    
    public function transform(User $user): array
    {
        $data = [
            'id' => $user->id(),
            'name' => $user->name(),
        ];
        
        return $data;
    }
}

$resource = new Collection($users, UserTransformer::class);

$response = $manager->createData($resource)->toArray();

Inject services to the transformers

You can inject services to your transformer through constructor:

class UserTransformer extends TransformerAbstract
{
    private $entityManager;
    
    public function __construct(EntityManagerInterface $entityManager)
    {
        $this->entityManager = $entityManager;
    }
    
    public function transform(User $user): array
    {
        $data = [
            'id' => $user->id(),
            'name' => $user->name(),
        ];

        // $this->entityManager->getRepository(...)
        
        return $data;
    }
}

About

A Symfony Bundle for Fractal by League. Implements dependency injection into your transformers

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%