-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
configuration-1.0.0.xsd
59 lines (36 loc) · 2.21 KB
/
configuration-1.0.0.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8" ?>
<xsd:schema xmlns="http://go.aopphp.com/xsd-schema/go-aop-bundle"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://go.aopphp.com/xsd-schema/go-aop-bundle"
elementFormDefault="qualified">
<xsd:element name="config" type="config" />
<xsd:complexType name="config">
<xsd:all>
<xsd:element name="cache-warmer" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
<xsd:element name="doctrine-support" type="xsd:boolean" minOccurs="0" maxOccurs="1" />
<xsd:element name="options" minOccurs="0" maxOccurs="1">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="debug" type="xsd:string" minOccurs="0" maxOccurs="1" />
<xsd:element name="app-dir" type="xsd:string" minOccurs="0" maxOccurs="1" />
<xsd:element name="cache-dir" type="xsd:string" minOccurs="0" maxOccurs="1" />
<xsd:element name="include-path" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
<xsd:element name="exclude-path" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
<xsd:element name="container-class" type="xsd:string" minOccurs="0" maxOccurs="1" />
<xsd:element name="feature" minOccurs="0" maxOccurs="unbounded">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
<xsd:enumeration value="INTERCEPT_FUNCTIONS" />
<xsd:enumeration value="INTERCEPT_INITIALIZATIONS" />
<xsd:enumeration value="INTERCEPT_INCLUDES" />
<xsd:enumeration value="PREBUILT_CACHE" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:all>
</xsd:complexType>
</xsd:schema>