arko / serializer-extensions-bundle
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/arko/serializer-extensions-bundle
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-10-11 22:45:35 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