2017 © Pedro Peláez
 

library serializer-extensions-bundle

image

arko/serializer-extensions-bundle

  • Saturday, April 4, 2015
  • by lemark
  • Repository
  • 1 Watchers
  • 0 Stars
  • 12 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

SerializerExtensionsBundle

This bundle provides Symfony2 integration with SerializerExtensions library. This library allows you to use array format with JMSSerializer library., (*1)

Installation

1. Install using composer

php composer.phar require arko/serializer-extensions-bundle "dev-master@dev"

2. Enable this bundle in your AppKernel.php

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Arko\SerializerExtensionsBundle\ArkoSerializerExtensionsBundle()
    );
}

3. Use

From now you can use array format when serializing and deserealizing your objects with JMSSeralizer, (*2)

The Versions