Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / serializer / Tests / Fixtures / serialization.xml
1 <?xml version="1.0" ?>
2
3 <serializer xmlns="http://symfony.com/schema/dic/serializer-mapping"
4                     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5                     xsi:schemaLocation="http://symfony.com/schema/dic/serializer-mapping http://symfony.com/schema/dic/serializer-mapping/serializer-mapping-1.0.xsd">
6
7     <class name="Symfony\Component\Serializer\Tests\Fixtures\GroupDummy">
8         <attribute name="foo">
9             <group>group1</group>
10             <group>group2</group>
11         </attribute>
12
13         <attribute name="bar">
14             <group>group2</group>
15         </attribute>
16     </class>
17
18     <class name="Symfony\Component\Serializer\Tests\Fixtures\MaxDepthDummy">
19         <attribute name="foo" max-depth="2" />
20         <attribute name="bar" max-depth="3" />
21     </class>
22
23 </serializer>