Releases: php-soap/wsdl-reader
Releases · php-soap/wsdl-reader
Version 0.13.0
Version 0.12.0
Version 0.11.0
What's Changed
Full Changelog: 0.10.0...0.11.0
Version 0.10.0
What's Changed
- Update veewee/xml requirement from ^2.6 to ^2.6 || ^3.0 by @dependabot in #22
- Parse anonymous sequence containers by @veewee in #24
New Contributors
- @dependabot made their first contribution in #22
Full Changelog: 0.9.0...0.10.0
Version 0.9.0
What's Changed
Full Changelog: 0.8.0...0.9.0
Version 0.8.0
What's Changed
Full Changelog: 0.7.1...0.8.0
0.7.1
Version 0.7.0
Release 0.6.0
What's Changed
Full Changelog: 0.5.0...0.6.0
Release 0.5.0
What's Changed
- Mark extends as simple by @veewee in #12
- Improve bottom type inference of nested simple types by @veewee in #13
<simpleType name="StringLength1to128">
<restriction base="string">
<minLength value="1"/>
<maxLength value="128"/>
</restriction>
</simpleType>
<complexType name="EmailType">
<simpleContent>
<extension base="tns:StringLength1to128">
<attribute name="EmailType" type="string" use="optional" />
</extension>
</simpleContent>
</complexType>
<complexType name="VerificationType">
<sequence>
<element name="Email" type="tns:EmailType" minOccurs="0"></element>
</sequence>
</complexType>
Types:
> http://test-uri/:StringLength1to128 extends string
> http://test-uri/:EmailType extends StringLength1to128 {
StringLength1to128 $_
@string $EmailType
}
> http://test-uri/:VerificationType {
?EmailType $Email
}
Full Changelog: 0.3.0...0.5.0