Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3rdparty
Submodule 3rdparty updated 57 files
+1 −0 composer.json
+9 −9 composer.lock
+36 −0 composer/autoload_classmap.php
+36 −0 composer/autoload_static.php
+11 −10 composer/installed.json
+3 −3 composer/installed.php
+155 −0 justinrainbow/json-schema/dist/schema/json-schema-draft-06.json
+10 −0 justinrainbow/json-schema/src/JsonSchema/ConstraintError.php
+1 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php
+61 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/AdditionalItemsConstraint.php
+93 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/AdditionalPropertiesConstraint.php
+42 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/AllOfConstraint.php
+51 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/AnyOfConstraint.php
+35 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/ConstConstraint.php
+47 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/ContainsConstraint.php
+64 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/DependenciesConstraint.php
+81 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/Draft06Constraint.php
+41 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/EnumConstraint.php
+38 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/ExclusiveMaximumConstraint.php
+38 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/ExclusiveMinimumConstraint.php
+46 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/Factory.php
+220 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/FormatConstraint.php
+52 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/ItemsConstraint.php
+39 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/MaxItemsConstraint.php
+39 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/MaxLengthConstraint.php
+39 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/MaxPropertiesConstraint.php
+38 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/MaximumConstraint.php
+39 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/MinItemsConstraint.php
+39 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/MinLengthConstraint.php
+39 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/MinPropertiesConstraint.php
+38 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/MinimumConstraint.php
+54 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/MultipleOfConstraint.php
+40 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/NotConstraint.php
+50 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/OneOfConstraint.php
+63 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/PatternConstraint.php
+72 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/PatternPropertiesConstraint.php
+48 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/PropertiesConstraint.php
+65 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/PropertiesNamesConstraint.php
+45 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/RefConstraint.php
+58 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/RequiredConstraint.php
+50 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/TypeConstraint.php
+48 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/UniqueItemsConstraint.php
+23 −4 justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php
+2 −1 justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php
+11 −0 justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php
+48 −0 justinrainbow/json-schema/src/JsonSchema/DraftIdentifiers.php
+109 −0 justinrainbow/json-schema/src/JsonSchema/Entity/ErrorBag.php
+66 −0 justinrainbow/json-schema/src/JsonSchema/Entity/ErrorBagProxy.php
+37 −9 justinrainbow/json-schema/src/JsonSchema/Rfc3339.php
+38 −10 justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php
+4 −4 justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php
+4 −0 justinrainbow/json-schema/src/JsonSchema/Tool/Validator/RelativeReferenceValidator.php
+17 −5 justinrainbow/json-schema/src/JsonSchema/Tool/Validator/UriValidator.php
+3 −1 justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php
+18 −7 justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php
+1 −1 justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php
+26 −4 justinrainbow/json-schema/src/JsonSchema/Validator.php
Loading