|
35 | 35 | </xsd:choice> |
36 | 36 |
|
37 | 37 | <xsd:attribute name="http-method-override" type="xsd:boolean" /> |
38 | | - <xsd:attribute name="trusted-proxies" type="xsd:string" /> |
39 | 38 | <xsd:attribute name="ide" type="xsd:string" /> |
40 | 39 | <xsd:attribute name="secret" type="xsd:string" /> |
41 | 40 | <xsd:attribute name="default-locale" type="xsd:string" /> |
|
76 | 75 | </xsd:complexType> |
77 | 76 |
|
78 | 77 | <xsd:complexType name="profiler"> |
79 | | - <xsd:all> |
80 | | - <xsd:element name="matcher" type="profiler_matcher" minOccurs="0" maxOccurs="1" /> |
81 | | - </xsd:all> |
82 | | - |
83 | 78 | <xsd:attribute name="collect" type="xsd:string" /> |
84 | 79 | <xsd:attribute name="only-exceptions" type="xsd:string" /> |
85 | 80 | <xsd:attribute name="only-master-requests" type="xsd:string" /> |
|
90 | 85 | <xsd:attribute name="lifetime" type="xsd:string" /> |
91 | 86 | </xsd:complexType> |
92 | 87 |
|
93 | | - <xsd:complexType name="profiler_matcher"> |
94 | | - <xsd:attribute name="ip" type="xsd:string" /> |
95 | | - <xsd:attribute name="path" type="xsd:string" /> |
96 | | - <xsd:attribute name="service" type="xsd:string" /> |
97 | | - </xsd:complexType> |
98 | | - |
99 | 88 | <xsd:complexType name="router"> |
100 | 89 | <xsd:attribute name="resource" type="xsd:string" /> |
101 | 90 | <xsd:attribute name="type" type="xsd:string" /> |
102 | 91 | <xsd:attribute name="http-port" type="xsd:string" /> |
103 | 92 | <xsd:attribute name="https-port" type="xsd:string" /> |
104 | 93 | <xsd:attribute name="strict-requirements" type="xsd:string" /> |
| 94 | + <xsd:attribute name="utf8" type="xsd:boolean" /> |
105 | 95 | </xsd:complexType> |
106 | 96 |
|
107 | 97 | <xsd:complexType name="session"> |
|
114 | 104 | <xsd:attribute name="cookie-domain" type="xsd:string" /> |
115 | 105 | <xsd:attribute name="cookie-secure" type="cookie_secure" /> |
116 | 106 | <xsd:attribute name="cookie-httponly" type="xsd:boolean" /> |
| 107 | + <xsd:attribute name="cookie-samesite" type="cookie_samesite" /> |
117 | 108 | <xsd:attribute name="use-cookies" type="xsd:boolean" /> |
118 | 109 | <xsd:attribute name="cache-limiter" type="xsd:string" /> |
119 | 110 | <xsd:attribute name="gc-maxlifetime" type="xsd:string" /> |
120 | 111 | <xsd:attribute name="gc-divisor" type="xsd:string" /> |
121 | 112 | <xsd:attribute name="gc-probability" type="xsd:string" /> |
122 | | - <xsd:attribute name="use-strict-mode" type="xsd:boolean" /> |
123 | 113 | <xsd:attribute name="save-path" type="xsd:string" /> |
| 114 | + <xsd:attribute name="metadata-update-threshold" type="xsd:nonNegativeInteger" /> |
124 | 115 | </xsd:complexType> |
125 | 116 |
|
126 | 117 | <xsd:complexType name="request"> |
|
238 | 229 | <xsd:element name="mapping" type="file_mapping" /> |
239 | 230 | </xsd:choice> |
240 | 231 | <xsd:attribute name="enabled" type="xsd:boolean" /> |
241 | | - <xsd:attribute name="cache" type="xsd:string" /> |
242 | 232 | <xsd:attribute name="enable-annotations" type="xsd:boolean" /> |
243 | 233 | <xsd:attribute name="name-converter" type="xsd:string" /> |
244 | 234 | <xsd:attribute name="circular-reference-handler" type="xsd:string" /> |
|
258 | 248 | <xsd:element name="default-psr6-provider" type="xsd:string" minOccurs="0" maxOccurs="1" /> |
259 | 249 | <xsd:element name="default-redis-provider" type="xsd:string" minOccurs="0" maxOccurs="1" /> |
260 | 250 | <xsd:element name="default-memcached-provider" type="xsd:string" minOccurs="0" maxOccurs="1" /> |
| 251 | + <xsd:element name="default-pdo-provider" type="xsd:string" minOccurs="0" maxOccurs="1" /> |
261 | 252 | <xsd:element name="pool" type="cache_pool" minOccurs="0" maxOccurs="unbounded" /> |
262 | 253 | </xsd:sequence> |
263 | 254 |
|
|
352 | 343 | </xsd:restriction> |
353 | 344 | </xsd:simpleType> |
354 | 345 |
|
| 346 | + <xsd:simpleType name="cookie_samesite"> |
| 347 | + <xsd:restriction base="xsd:string"> |
| 348 | + <xsd:enumeration value="" /> |
| 349 | + <xsd:enumeration value="lax" /> |
| 350 | + <xsd:enumeration value="strict" /> |
| 351 | + </xsd:restriction> |
| 352 | + </xsd:simpleType> |
| 353 | + |
355 | 354 | <xsd:simpleType name="workflow_type"> |
356 | 355 | <xsd:restriction base="xsd:string"> |
357 | 356 | <xsd:enumeration value="state_machine" /> |
|
0 commit comments