assetic-1.0.xsd 980 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <xsd:schema xmlns="http://symfony.com/schema/dic/assetic"
  3. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  4. targetNamespace="http://symfony.com/schema/dic/assetic"
  5. elementFormDefault="qualified">
  6. <xsd:element name="config" type="config" />
  7. <xsd:complexType name="config">
  8. <xsd:sequence>
  9. <xsd:element name="bundle" type="bundle" minOccurs="0" maxOccurs="unbounded" />
  10. </xsd:sequence>
  11. <xsd:attribute name="debug" type="xsd:string" />
  12. <xsd:attribute name="use-controller" type="xsd:string" />
  13. <xsd:attribute name="read-from" type="xsd:string" />
  14. <xsd:attribute name="write-to" type="xsd:string" />
  15. <xsd:attribute name="closure" type="xsd:string" />
  16. <xsd:attribute name="yui" type="xsd:string" />
  17. </xsd:complexType>
  18. <xsd:complexType name="bundle">
  19. <xsd:attribute name="name" type="xsd:string" />
  20. </xsd:complexType>
  21. </xsd:schema>