Skip to content

Commit f22e1ee

Browse files
committed
Import files from xml-xsd repository
1 parent f72cfbc commit f22e1ee

File tree

489 files changed

+23924
-580
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

489 files changed

+23924
-580
lines changed

classes/element.registry.php

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
return [
6+
'http://www.w3.org/2001/XMLSchema' => [
7+
'all' => '\SimpleSAML\XMLSchema\XML\xs\All',
8+
'annotation' => '\SimpleSAML\XMLSchema\XML\xs\Annotation',
9+
'any' => '\SimpleSAML\XMLSchema\XML\xs\Any',
10+
'anyAttribute' => '\SimpleSAML\XMLSchema\XML\xs\AnyAttribute',
11+
'appinfo' => '\SimpleSAML\XMLSchema\XML\xs\Appinfo',
12+
'attribute' => '\SimpleSAML\XMLSchema\XML\xs\TopLevelAttribute',
13+
'attributeGroup' => '\SimpleSAML\XMLSchema\XML\xs\NamedAttributeGroup',
14+
'choice' => '\SimpleSAML\XMLSchema\XML\xs\Choice',
15+
'complexContent' => '\SimpleSAML\XMLSchema\XML\xs\ComplexContent',
16+
'complexType' => '\SimpleSAML\XMLSchema\XML\xs\TopLevelComplexType',
17+
'documentation' => '\SimpleSAML\XMLSchema\XML\xs\Documentation',
18+
'element' => '\SimpleSAML\XMLSchema\XML\xs\TopLevelElement',
19+
'enumeration' => '\SimpleSAML\XMLSchema\XML\xs\Enumeration',
20+
'field' => '\SimpleSAML\XMLSchema\XML\xs\Field',
21+
'fractionDigits' => '\SimpleSAML\XMLSchema\XML\xs\FractionDigits',
22+
'group' => '\SimpleSAML\XMLSchema\XML\xs\NamedGroup',
23+
'import' => '\SimpleSAML\XMLSchema\XML\xs\Import',
24+
'include' => '\SimpleSAML\XMLSchema\XML\xs\XsInclude',
25+
'key' => '\SimpleSAML\XMLSchema\XML\xs\Key',
26+
'keyref' => '\SimpleSAML\XMLSchema\XML\xs\Keyref',
27+
'length' => '\SimpleSAML\XMLSchema\XML\xs\Length',
28+
'list' => '\SimpleSAML\XMLSchema\XML\xs\XsList',
29+
'maxExclusive' => '\SimpleSAML\XMLSchema\XML\xs\MaxExclusive',
30+
'maxInclusive' => '\SimpleSAML\XMLSchema\XML\xs\MaxInclusive',
31+
'maxLength' => '\SimpleSAML\XMLSchema\XML\xs\MaxLength',
32+
'minExclusive' => '\SimpleSAML\XMLSchema\XML\xs\MinExclusive',
33+
'minInclusive' => '\SimpleSAML\XMLSchema\XML\xs\MinInclusive',
34+
'minLength' => '\SimpleSAML\XMLSchema\XML\xs\MinLength',
35+
'notation' => '\SimpleSAML\XMLSchema\XML\xs\Notation',
36+
'pattern' => '\SimpleSAML\XMLSchema\XML\xs\Pattern',
37+
'redefine' => '\SimpleSAML\XMLSchema\XML\xs\Redefine',
38+
'restriction' => '\SimpleSAML\XMLSchema\XML\xs\Restriction',
39+
'schema' => '\SimpleSAML\XMLSchema\XML\xs\Schema',
40+
'selector' => '\SimpleSAML\XMLSchema\XML\xs\Selector',
41+
'sequence' => '\SimpleSAML\XMLSchema\XML\xs\Sequence',
42+
'simpleContent' => '\SimpleSAML\XMLSchema\XML\xs\SimpleContent',
43+
'simpleType' => '\SimpleSAML\XMLSchema\XML\xs\TopLevelSimpleType',
44+
'totalDigits' => '\SimpleSAML\XMLSchema\XML\xs\TotalDigits',
45+
'union' => '\SimpleSAML\XMLSchema\XML\xs\Union',
46+
'unique' => '\SimpleSAML\XMLSchema\XML\xs\Unique',
47+
'whiteSpace' => '\SimpleSAML\XMLSchema\XML\xs\WhiteSpace',
48+
],
49+
];

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@
1717
],
1818
"autoload": {
1919
"psr-4": {
20-
"SimpleSAML\\XML\\": "src/"
20+
"SimpleSAML\\XMLSchema\\": "src/XMLSchema",
21+
"SimpleSAML\\XML\\": "src/XML"
2122
}
2223
},
2324
"autoload-dev": {
2425
"psr-4": {
25-
"SimpleSAML\\Test\\XML\\": ["tests/XML", "tests/Utils"]
26+
"SimpleSAML\\Test\\XML\\": ["tests/XML", "tests/Utils"],
27+
"SimpleSAML\\Test\\XMLSchema\\": ["tests/XMLSchema"]
2628
}
2729
},
2830
"require": {

0 commit comments

Comments
 (0)