2017 © Pedro Peláez
 

symfony-bundle enum-serializer-bundle

A symfony bundle to serialize/deserialize enumerations of type myclabs/php-enum with jms/serializer

image

aboutcoders/enum-serializer-bundle

A symfony bundle to serialize/deserialize enumerations of type myclabs/php-enum with jms/serializer

  • Saturday, February 17, 2018
  • by aboutcoders
  • Repository
  • 3 Watchers
  • 2 Stars
  • 3,338 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 7 % Grown

The README.md

AbcEnumSerializerBundle

A symfony bundle to serialize/deserialize enumerations of type myclabs/php-enum with jms/serializer., (*1)

Build Status: Build Status, (*2)

Note: At this point json is the only supported format., (*3)

Installation

Add the AbcEnumSerializerBundle to your composer.json file:, (*4)

php composer.phar require aboutcoders/enum-serializer-bundle

Include the bundle in the AppKernel.php class:, (*5)

``` php, (*6)

app/AppKernel.php

public function registerBundles() { $bundles = array( ... new Abc\Bundle\EnumSerializerBundle\AbcEnumSerializerBundle(), ); }, (*7)


## Usage Define the enum as defined by [myclabs/php-enum](https://github.com/myclabs/php-enum): ``` php namespace Acme; use MyCLabs\Enum\Enum; class MyEnum { const VALUE_1; const VALUE_2; }

In order to serialize/deserialize the enumeration you can register the type in app/config.yml, (*8)

``` yaml, (*9)

app/config/config.yml

abc_enum_serializer: serializer: types: - Acme\MyEnum, (*10)


or you can register the enum within the service container and tag it with with the tag `abc.enum` ``` yaml services: my_enum: class: Acme\MyEnum tags: - { name: abc.enum }

Note, this service should be declared private and should never be instantiated, since this would lead to an exception. The only purpose of this service is to provide the fully qualified name of the class that needs to be registered as enum type., (*11)

Finally you can configure the type in case you use it as a member variable, (*12)

``` php use JMS\Serializer\Annotation\Type;, (*13)

class MyExample {, (*14)

/**
 * @Type("Acme\MyEnum")
 */
private $myEnum;

}, (*15)


or serialize/deserialize it directly referencing the type: ``` php $serializer = $container->get('jms_serializer'); $data = $serializer->serialize($subject, 'json'); $enum = $this->serializer->deserialize($data, MyExample::class, 'json');

ToDo

  • Add support for the formats XML and YAML

The Versions

17/02 2018

dev-master

9999999-dev http://aboutcoders.com

A symfony bundle to serialize/deserialize enumerations of type myclabs/php-enum with jms/serializer

  Sources   Download

MIT

The Requires

 

The Development Requires

by Hannes Schulz

serializer enum serialize jms deserialize php-enum

17/02 2018

0.3

0.3.0.0 http://aboutcoders.com

A symfony bundle to serialize/deserialize enumerations of type myclabs/php-enum with jms/serializer

  Sources   Download

MIT

The Requires

 

The Development Requires

by Hannes Schulz

serializer enum serialize jms deserialize php-enum

27/05 2016

0.2.0

0.2.0.0 http://aboutcoders.com

A symfony bundle to serialize/deserialize enumerations of type myclabs/php-enum with jms/serializer

  Sources   Download

MIT

The Requires

 

The Development Requires

by Hannes Schulz

serializer enum serialize jms deserialize php-enum

15/05 2016

0.1.0

0.1.0.0 http://aboutcoders.com

A symfony bundle to serialize/deserialize enumerations of type myclabs/php-enum with jms/serializer

  Sources   Download

MIT

The Requires

 

The Development Requires

by Hannes Schulz

enum serialize jms deserialize