2017 © Pedro Peláez
 

symfony-bundle serializer

A bundle to handle serialization and deseralization of Entities on Symfony, it's a layer over Symfony's Serializer Component

image

aescarcha/serializer

A bundle to handle serialization and deseralization of Entities on Symfony, it's a layer over Symfony's Serializer Component

  • Wednesday, August 3, 2016
  • by aEscarcha
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Aescarcha SerializerBundle

Introduction

This bundle is made to make serialization of Entities easier on Symfony. It handles symfony/serializer and provides a fallback to read from database if needed., (*1)

Install

composer require aescarcha/serializer

This bundle depends on doctrine entity manager, you need to add this, (*2)

services.yml
services:
    aescarcha.serializer:
        class: Aescarcha\SerializerBundle\Controller\SerializeController
        arguments: [ @doctrine.orm.entity_manager ]
AppKernel.php
    $bundles = array(
        new Aescarcha\SerializerBundle\AescarchaSerializerBundle(),
    );

Tests

Tests are provided on the repo, but they're not working because the test requires some Entities and Repositories to work, making them work in a clean symfony install is also a TODO, (*3)

The Versions

03/08 2016

dev-master

9999999-dev

A bundle to handle serialization and deseralization of Entities on Symfony, it's a layer over Symfony's Serializer Component

  Sources   Download

MIT

The Requires

 

The Development Requires

by Álvaro Escarcha

serialization symfony