This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Serializer
Fabien Potencier d941f80ef8 Merge branch '2.5'
* 2.5:
  added missing test
  fixed CS
  [HttpFoundation] Remove content-related headers if content is empty
  bumped Symfony version to 2.5.2
  bumped Symfony version to 2.4.8
  updated VERSION for 2.5.1
  updated CHANGELOG for 2.5.1
  removed defaults from PHPUnit configuration

Conflicts:
	src/Symfony/Component/HttpKernel/Kernel.php
2014-07-09 11:06:26 +02:00
..
Encoder [serializer] fixed whitespace issue when decoding xml 2014-06-04 12:17:52 +02:00
Exception updated license blocks 2012-03-31 18:00:32 -03:00
Normalizer Merge branch '2.4' into 2.5 2014-07-01 08:40:40 +02:00
Tests minor #11233 [Serializer] Added a test for decoding xml with whitespaces (florianv) 2014-07-04 08:14:10 +02:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [Serializer] added support for is.* methods in GetSetMethodNormalizer 2014-03-03 16:52:29 +01:00
composer.json updated version to 2.6 2014-05-23 16:36:49 +02:00
LICENSE update year on licenses 2014-01-07 08:19:25 -05:00
phpunit.xml.dist removed defaults from PHPUnit configuration 2014-07-07 12:13:42 +02:00
README.md updated the composer install command to reflect changes in Composer 2013-09-18 09:27:26 +02:00
Serializer.php unified return null usages 2014-04-18 22:40:52 +02:00
SerializerAwareInterface.php removed unneeded use statements 2014-01-01 08:52:14 +01:00
SerializerInterface.php Completly refactor the Serializer Options Pull Request to push context information directly and avoid state and dependencies between SerializerInterface and encoders/normalizers. 2013-01-18 14:08:59 +01:00

Serializer Component

With the Serializer component its possible to handle serializing data structures, including object graphs, into array structures or other formats like XML and JSON. It can also handle deserializing XML and JSON back to object graphs.

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Serializer/
$ composer.phar install
$ phpunit