12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <xsd:schema xmlns="http://symfony.com/schema/dic/assetic"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://symfony.com/schema/dic/assetic"
- elementFormDefault="qualified">
- <xsd:element name="config" type="config" />
- <xsd:complexType name="config">
- <xsd:sequence>
- <xsd:element name="bundle" type="bundle" minOccurs="0" maxOccurs="unbounded" />
- </xsd:sequence>
- <xsd:attribute name="debug" type="xsd:string" />
- <xsd:attribute name="use-controller" type="xsd:string" />
- <xsd:attribute name="read-from" type="xsd:string" />
- <xsd:attribute name="write-to" type="xsd:string" />
- <xsd:attribute name="closure" type="xsd:string" />
- <xsd:attribute name="yui" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="bundle">
- <xsd:attribute name="name" type="xsd:string" />
- </xsd:complexType>
- </xsd:schema>
|