metricloop/laravel-transformer-maker

This package is abandoned and no longer maintained. No replacement package was suggested.

A Laravel 5 package to create Fractal Transformers

v1.0.5 2018-10-26 13:48 UTC

This package is not auto-updated.

Last update: 2022-10-15 08:52:18 UTC


README

Latest Version Software License Build Status Total Downloads

This package gives you a quick way to create Transformers for your Eloquent models when using Fractal.

Installation And Usage

Issue the command:

composer require "metricloop/laravel-transformer-maker"

Then register the service provider:

// config/app.php

'providers' => [
    // ...
    MetricLoop\TransformerMaker\TransformerMakerServiceProvider::class,
];

Then just use it like any other Artisan make command:

php artisan make:transformer Person

And get the stubbed out PersonTransformer.php in App/Transformers!

Shout Out

To Phil Sturgeon and the team at the PHP League for Fractal. And if you haven't already, go check out Phil's book about building APIs: Build APIs You Won't Hate.

About Metric Loop

Metric Loop is an Austin based technology company that strives to create value by helping its clients reduce overhead, simplify their hardware procurement, and run their businesses more efficiently.

License

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