mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-26 03:58:45 +02:00
* symfony 5.4 (diff dev) * symfony 5.4 (working) * symfony 5.4 (update autoload) * symfony 5.4 (remove swiftmailer mailer implementation) * symfony 5.4 (php doc and split Global accessor class) ### Impacted packages: composer require php:">=7.2.5 <8.0.0" symfony/console:5.4.* symfony/dotenv:5.4.* symfony/framework-bundle:5.4.* symfony/twig-bundle:5.4.* symfony/yaml:5.4.* --update-with-dependencies composer require symfony/stopwatch:5.4.* symfony/web-profiler-bundle:5.4.* --dev --update-with-dependencies
59 lines
2.5 KiB
XML
59 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<xsd:schema xmlns="http://symfony.com/schema/dic/twig"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
targetNamespace="http://symfony.com/schema/dic/twig"
|
|
elementFormDefault="qualified">
|
|
|
|
<xsd:element name="config" type="config" />
|
|
|
|
<xsd:complexType name="config">
|
|
<xsd:sequence>
|
|
<xsd:element name="date" type="date" minOccurs="0" maxOccurs="1" />
|
|
<xsd:element name="number-format" type="number_format" minOccurs="0" maxOccurs="1" />
|
|
<xsd:element name="form-theme" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
|
|
<xsd:element name="global" type="global" minOccurs="0" maxOccurs="unbounded" />
|
|
<xsd:element name="path" type="path" minOccurs="0" maxOccurs="unbounded" />
|
|
</xsd:sequence>
|
|
|
|
<xsd:attribute name="auto-reload" type="xsd:string" />
|
|
<xsd:attribute name="autoescape" type="xsd:string" />
|
|
<xsd:attribute name="autoescape-service" type="xsd:string" />
|
|
<xsd:attribute name="autoescape-service-method" type="xsd:string" />
|
|
<xsd:attribute name="base-template-class" type="xsd:string" />
|
|
<xsd:attribute name="cache" type="xsd:string" />
|
|
<xsd:attribute name="charset" type="xsd:string" />
|
|
<xsd:attribute name="debug" type="xsd:string" />
|
|
<xsd:attribute name="strict-variables" type="xsd:string" />
|
|
<xsd:attribute name="default-path" type="xsd:string" />
|
|
</xsd:complexType>
|
|
|
|
<xsd:complexType name="date">
|
|
<xsd:attribute name="format" type="xsd:string" />
|
|
<xsd:attribute name="interval-format" type="xsd:string" />
|
|
<xsd:attribute name="timezone" type="xsd:string" />
|
|
</xsd:complexType>
|
|
|
|
<xsd:complexType name="number_format">
|
|
<xsd:attribute name="decimals" type="xsd:integer" />
|
|
<xsd:attribute name="decimal-point" type="xsd:string" />
|
|
<xsd:attribute name="thousands-separator" type="xsd:string" />
|
|
</xsd:complexType>
|
|
|
|
<xsd:complexType name="path" mixed="true">
|
|
<xsd:attribute name="namespace" type="xsd:string" />
|
|
</xsd:complexType>
|
|
|
|
<xsd:complexType name="global" mixed="true">
|
|
<xsd:attribute name="key" type="xsd:string" use="required" />
|
|
<xsd:attribute name="type" type="global_type" />
|
|
<xsd:attribute name="id" type="xsd:string" />
|
|
</xsd:complexType>
|
|
|
|
<xsd:simpleType name="global_type">
|
|
<xsd:restriction base="xsd:string">
|
|
<xsd:enumeration value="service" />
|
|
</xsd:restriction>
|
|
</xsd:simpleType>
|
|
</xsd:schema>
|