arko / serializer-extensions-bundle
dev-master
2015-04-04 00:21 UTC
Requires
- arko/serializer-extensions: dev-master
- jms/serializer-bundle: ~0.13
- symfony/config: ~2.3
- symfony/dependency-injection: ~2.3
- symfony/http-kernel: ~2.3
This package is not auto-updated.
Last update: 2025-04-12 20:05:40 UTC
README
This bundle provides Symfony2 integration with SerializerExtensions library. This library allows you to use array format with JMSSerializer library.
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