1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <xsd:schema xmlns="http://www.symfony-project.org/schema/dic/doctrine"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://www.symfony-project.org/schema/dic/doctrine"
- elementFormDefault="qualified">
- <xsd:element name="dbal" type="dbal" />
- <xsd:complexType name="dbal">
- <xsd:sequence>
- <xsd:element name="connections" type="connections" minOccurs="0" maxOccurs="1" />
- </xsd:sequence>
- <xsd:attribute name="default_connection" type="xsd:string" />
- <xsd:attribute name="dbname" type="xsd:string" />
- <xsd:attribute name="host" type="xsd:string" />
- <xsd:attribute name="port" type="xsd:integer" />
- <xsd:attribute name="user" type="xsd:string" />
- <xsd:attribute name="password" type="xsd:string" />
- <xsd:attribute name="driver" type="xsd:string" />
- <xsd:attribute name="options" type="xsd:string" />
- <xsd:attribute name="path" type="xsd:string" />
- <xsd:attribute name="unix_socket" type="xsd:string" />
- <xsd:attribute name="memory" type="xsd:boolean" />
- <xsd:attribute name="charset" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="connections">
- <xsd:sequence>
- <xsd:element name="connection" type="connection" minOccurs="1" maxOccurs="unbounded" />
- </xsd:sequence>
- </xsd:complexType>
- <xsd:complexType name="connection">
- <xsd:attribute name="id" type="xsd:string" use="required" />
- <xsd:attribute name="dbname" type="xsd:string" use="required" />
- <xsd:attribute name="host" type="xsd:string" />
- <xsd:attribute name="port" type="xsd:integer" />
- <xsd:attribute name="user" type="xsd:string" />
- <xsd:attribute name="password" type="xsd:string" />
- <xsd:attribute name="driver" type="xsd:string" />
- <xsd:attribute name="options" type="xsd:string" />
- <xsd:attribute name="path" type="xsd:string" />
- <xsd:attribute name="unix_socket" type="xsd:string" />
- <xsd:attribute name="memory" type="xsd:boolean" />
- <xsd:attribute name="charset" type="xsd:string" />
- <xsd:attribute name="configuration_class" type="xsd:string" />
- <xsd:attribute name="event_manager_class" type="xsd:string" />
- <xsd:attribute name="wrapper_class" type="xsd:string" />
- </xsd:complexType>
- <xsd:element name="orm" type="orm" />
- <xsd:complexType name="orm">
- <xsd:sequence>
- <xsd:element name="entity_managers" type="entity_managers" minOccurs="0" maxOccurs="1" />
- </xsd:sequence>
- <xsd:attribute name="default_entity_manager" type="xsd:string" />
- <xsd:attribute name="metadata_driver" type="xsd:string" />
- <xsd:attribute name="cache_driver" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="entity_managers">
- <xsd:sequence>
- <xsd:element name="entity_manager" type="entity_manager" minOccurs="1" maxOccurs="unbounded" />
- </xsd:sequence>
- </xsd:complexType>
- <xsd:complexType name="entity_manager">
- <xsd:attribute name="connection" type="xsd:string" />
- </xsd:complexType>
- </xsd:schema>
|