debug-1.0.xsd 624 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <xsd:schema xmlns="http://symfony.com/schema/dic/debug"
  3. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  4. targetNamespace="http://symfony.com/schema/dic/debug"
  5. elementFormDefault="qualified">
  6. <xsd:element name="config" type="config" />
  7. <xsd:complexType name="config">
  8. <xsd:attribute name="max-items" type="xsd:integer" />
  9. <xsd:attribute name="min-depth" type="xsd:integer" />
  10. <xsd:attribute name="max-string-length" type="xsd:integer" />
  11. <xsd:attribute name="dump-destination" type="xsd:string" />
  12. </xsd:complexType>
  13. </xsd:schema>