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
2013-04-11 08:50:46 +02:00
..
Encoder Enforce sprintf for exceptions 2013-04-11 08:50:46 +02:00
Exception updated license blocks 2012-03-31 18:00:32 -03:00
Normalizer Enabled camelCase format to be used on denormalize method, that way camel_case attribute can be used on object as getCamelCase() 2013-02-06 09:43:00 +00:00
Tests [CS Fix] Consistent coding-style of concatenation operator usage 2013-04-02 10:39:57 +01:00
.gitignore made usage of Composer autoloader for subtree-split unit tests 2012-11-09 14:10:06 +01:00
CHANGELOG.md added missing entries in CHANGELOGs 2013-03-23 10:10:35 +01:00
composer.json updated the branch alias in composer files 2013-01-31 22:39:01 +01:00
LICENSE updated license year 2013-01-04 17:59:43 +01:00
phpunit.xml.dist made usage of Composer autoloader for subtree-split unit tests 2012-11-09 14:10:06 +01:00
README.md made usage of Composer autoloader for subtree-split unit tests 2012-11-09 14:10:06 +01:00
Serializer.php Enforce sprintf for exceptions 2013-04-11 08:50:46 +02:00
SerializerAwareInterface.php fixed CS 2012-07-09 14:54:20 +02: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 --dev
$ phpunit